mastodon/spec/helpers/home_helper_spec.rb

10 lines
241 B
Ruby
Raw Normal View History

2016-02-22 15:00:20 +00:00
require 'rails_helper'
RSpec.describe HomeHelper, type: :helper do
2017-05-29 16:02:44 +00:00
describe 'default_props' do
it 'returns default properties according to the context' do
expect(helper.default_props).to eq locale: I18n.locale
2017-05-29 16:02:44 +00:00
end
end
2016-02-22 15:00:20 +00:00
end