mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
1c36172c13
[#1617 state:resolved]
15 lines
402 B
Ruby
15 lines
402 B
Ruby
require 'abstract_unit'
|
|
|
|
class StringInquirerTest < Test::Unit::TestCase
|
|
def test_match
|
|
assert ActiveSupport::StringInquirer.new("production").production?
|
|
end
|
|
|
|
def test_miss
|
|
assert !ActiveSupport::StringInquirer.new("production").development?
|
|
end
|
|
|
|
def test_missing_question_mark
|
|
assert_raise(NoMethodError) { ActiveSupport::StringInquirer.new("production").production }
|
|
end
|
|
end
|