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.
22 lines
296 B
22 lines
296 B
require 'spec_helper'
|
|
|
|
describe 'Translations' do
|
|
|
|
describe 'Translate list' do
|
|
before(:each) do
|
|
visit '/translations'
|
|
end
|
|
|
|
it "does something" do
|
|
end
|
|
end
|
|
|
|
describe 'Translate english' do
|
|
before(:each) do
|
|
visit '/translations/en'
|
|
end
|
|
|
|
it "does something" do
|
|
end
|
|
end
|
|
end
|
|
|