We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78b8ded commit 5fd55b2Copy full SHA for 5fd55b2
spec/features/stories_manage_spec.rb
@@ -68,6 +68,21 @@
68
expect(page).to have_content "Story updated!"
69
end
70
71
+ it "allows me to select all stories" do
72
+ visit project_path(id: project.id)
73
+ check("Select All")
74
+
75
+ expect(page).to have_checked_field(name: "stories[]")
76
+ end
77
78
+ it "allows me to unselect all stories" do
79
80
81
+ uncheck("Select All")
82
83
+ expect(page).to have_unchecked_field(name: "stories[]")
84
85
86
it "allows me to delete a story" do
87
visit project_path(id: project.id)
88
0 commit comments