class CountryTest < ActiveSupport::TestCase
def test_gb
- gb = Country.find_by_code("GB")
+ gb = Country.find("GB")
assert_not_nil gb
assert_equal "GB", gb.code
assert_equal -8.623555, gb.min_lon
end
def test_au
- au = Country.find_by_code("AU")
+ au = Country.find("AU")
assert_not_nil au
assert_equal "AU", au.code
assert_equal 112.911057, au.min_lon
end
def test_xx
- xx = Country.find_by_code("XX")
+ xx = Country.find("XX")
assert_nil xx
end
end