You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
241 B

  1. require 'rails_helper'
  2. RSpec.describe HomeHelper, type: :helper do
  3. describe 'default_props' do
  4. it 'returns default properties according to the context' do
  5. expect(helper.default_props).to eq locale: I18n.locale
  6. end
  7. end
  8. end