Methods
T
Instance Public methods
test_match()
# File activesupport/test/string_inquirer_test.rb, line 4
def test_match
  assert ActiveSupport::StringInquirer.new("production").production?
end
test_miss()
# File activesupport/test/string_inquirer_test.rb, line 8
def test_miss
  assert !ActiveSupport::StringInquirer.new("production").development?
end
test_missing_question_mark()
# File activesupport/test/string_inquirer_test.rb, line 12
def test_missing_question_mark
  assert_raise(NoMethodError) { ActiveSupport::StringInquirer.new("production").production }
end