class Inspec::Resource

def initialize(backend, name, *args)

documentation.
quite frankly, dumb. Avoidable even with some simple
initialize methods from having to call super, which is,
because we're trying to avoid having resources with
As best I can figure out, this anonymous class only exists
TODO: remove
This has bitten us and should be a great candidate to remove in InSpec5
def initialize(backend, name, *args)
  supersuper_initialize(backend, name) do
    @resource_params = args
    super(*args)
  end
end