aboutsummaryrefslogtreecommitdiffstats
path: root/spec/features/refinery/blog/admin/posts_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/refinery/blog/admin/posts_spec.rb')
-rw-r--r--spec/features/refinery/blog/admin/posts_spec.rb12
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