diff options
Diffstat (limited to 'spec/features')
-rw-r--r-- | spec/features/refinery/blog/admin/posts_spec.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/features/refinery/blog/admin/posts_spec.rb b/spec/features/refinery/blog/admin/posts_spec.rb index c139b0d..8507f63 100644 --- a/spec/features/refinery/blog/admin/posts_spec.rb +++ b/spec/features/refinery/blog/admin/posts_spec.rb @@ -330,6 +330,18 @@ module Refinery end end + describe "delete the post translation in secondary locale", :focus do + it "succeeds" do + within "#post_#{blog_post.id}" do + click_link("Ru") + end + + click_link "Remove this translation" + + page.should_not have_content(blog_post.title) + page.should have_content("The translation was successfully removed.") + end + end end end |