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.
23 lines
296 B
23 lines
296 B
11 years ago
|
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
|