hanami-helpers/spec/integration/routing_helper_spec.rb

10 lines
203 B
Ruby

Rspec.describe 'Routing helper' do
before do
@actual = FullStack::Views::Dashboard::Index.render(format: :html)
end
it 'uses helper' do
expect(@actual).to include(%(/dashboard))
end
end