Forum: Rails I18n Using i18n.t in Rspec2 and Rails3

Posted by Skydan (Guest)
on 2010-10-06 13:13
(Received via mailing list)
Hello! Can anybody help me with using i18n.t method in rspec test
files?
I try to test this block:

  describe "GET 'home'" do
    it "should be successful" do
      get 'home'
      response.should have_selector("title",
                    :content => @base_title +
i18n.t( 'pages.title.home' ))
    end
  end

but this error appear:

Failure/Error: :content => @base_title + i18n.t( 'pages.title.home' ))
    undefined method `t' for
#<RSpec::Core::ExampleGroup::Nested_1::Nested_4:0xa13716c>
Posted by Andrés Gutiérrez (andresgutgon)
on 2010-10-06 13:20
(Received via mailing list)
Try this:

i18n.t(....) => NO
I18n.t(....) => Yes

The i is uppercase => I18n
Posted by Skydan (Guest)
on 2010-10-08 18:16
(Received via mailing list)
Thanks a lot! Thats work fine!
Please log in before posting. Registration is free and takes only a minute.
Existing account (Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
No account? Register here.