Methods
S
T
Instance Public methods
setup()
# File activesupport/test/string_inquirer_test.rb, line 4
def setup
  @string_inquirer = ActiveSupport::StringInquirer.new('production')
end
test_match()
# File activesupport/test/string_inquirer_test.rb, line 8
def test_match
  assert @string_inquirer.production?
end
test_miss()
# File activesupport/test/string_inquirer_test.rb, line 12
def test_miss
  assert_not @string_inquirer.development?
end
test_missing_question_mark()
# File activesupport/test/string_inquirer_test.rb, line 16
def test_missing_question_mark
  assert_raise(NoMethodError) { @string_inquirer.production }
end
test_respond_to()
# File activesupport/test/string_inquirer_test.rb, line 20
def test_respond_to
  assert_respond_to @string_inquirer, :development?
end