fix issue #425
This commit is contained in:
parent
763fe5215f
commit
f4ee99b72b
@ -53,7 +53,7 @@ module Locomotive
|
||||
'url' => request.url,
|
||||
'now' => Time.now.utc,
|
||||
'today' => Date.today,
|
||||
'locale' => I18n.locale,
|
||||
'locale' => I18n.locale.to_s,
|
||||
'default_locale' => current_site.default_locale.to_s,
|
||||
'locales' => current_site.locales,
|
||||
'current_user' => Locomotive::Liquid::Drops::CurrentUser.new(current_locomotive_account)
|
||||
|
@ -14,16 +14,24 @@ describe 'Locomotive rendering system' do
|
||||
|
||||
context '#liquid_context' do
|
||||
|
||||
it 'includes the current date and time' do
|
||||
before(:each) do
|
||||
@controller.instance_variable_set(:@page, @page)
|
||||
@controller.stubs(:flash).returns({})
|
||||
@controller.stubs(:params).returns({})
|
||||
@controller.stubs(:request).returns(OpenStruct.new(:url => '/'))
|
||||
end
|
||||
|
||||
it 'includes the current date and time' do
|
||||
context = @controller.send(:locomotive_context)
|
||||
context['now'].should_not be_blank
|
||||
context['today'].should_not be_blank
|
||||
end
|
||||
|
||||
it 'includes the locale' do
|
||||
context = @controller.send(:locomotive_context)
|
||||
context['locale'].should == 'en'
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
context 'setting the response' do
|
||||
|
Loading…
Reference in New Issue
Block a user