2016-02-23 02:00:20 +11:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe HomeHelper, type: :helper do
|
2017-05-30 02:02:44 +10:00
|
|
|
describe 'default_props' do
|
|
|
|
it 'returns default properties according to the context' do
|
2017-06-12 18:58:03 +10:00
|
|
|
expect(helper.default_props).to eq locale: I18n.locale
|
2017-05-30 02:02:44 +10:00
|
|
|
end
|
|
|
|
end
|
2016-02-23 02:00:20 +11:00
|
|
|
end
|