1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-24 14:37:20 +00:00
mastodon/spec/helpers/home_helper_spec.rb
2017-05-29 18:02:44 +02:00

9 lines
233 B
Ruby

require 'rails_helper'
RSpec.describe HomeHelper, type: :helper do
describe 'default_props' do
it 'returns default properties according to the context' do
expect(helper.default_props).to eq locale: :en
end
end
end