This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-02-22 16:00:20 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe HomeHelper, type: :helper do
|
2017-05-29 18:02:44 +02:00
|
|
|
describe 'default_props' do
|
|
|
|
it 'returns default properties according to the context' do
|
2017-06-12 10:58:03 +02:00
|
|
|
expect(helper.default_props).to eq locale: I18n.locale
|
2017-05-29 18:02:44 +02:00
|
|
|
end
|
|
|
|
end
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|