class FeduxOrgStdlib::FixturesManagement::NoFixture

Placeholder when no associated fixture found, displays warning

Attributes

name[R]

Public Class Methods

new(name) click to toggle source
# File lib/fedux_org_stdlib/fixtures_management/no_fixture.rb, line 12
def initialize(name)
  @name = name
end

Public Instance Methods

blank?() click to toggle source

Is not an existing plugin

# File lib/fedux_org_stdlib/fixtures_management/no_fixture.rb, line 17
def blank?
  true
end
method_missing(*_args) click to toggle source
# File lib/fedux_org_stdlib/fixtures_management/no_fixture.rb, line 21
def method_missing(*_args)
  warn "Warning: The fixture '#{name}' was not found!"
end