Adding spec for 94154:Add Students - Drag and Drop

hhales,panda,0

Change-Id: I4be5d546a1883da5370e74475f9c11287b55818f
Reviewed-on: https://gerrit.instructure.com/60786
Tested-by: Jenkins
Reviewed-by: Steven Shepherd <sshepherd@instructure.com>
QA-Review: Steven Shepherd <sshepherd@instructure.com>
Product-Review: Steven Shepherd <sshepherd@instructure.com>
This commit is contained in:
Heath Hales 2015-08-13 10:00:50 -06:00 committed by Steven Shepherd
parent d79ccc78d9
commit 3022fea1c4
1 changed files with 23 additions and 0 deletions

View File

@ -403,6 +403,29 @@ describe "new groups" do
expect(f(".group[data-id=\"#{@testgroup[2].id}\"] .group-name")).to include_text('Test Group 3') expect(f(".group[data-id=\"#{@testgroup[2].id}\"] .group-name")).to include_text('Test Group 3')
end end
it 'should add students via drag and drop', priority: "1", test_id: 94154 do
group_test_setup(2,1,2)
get "/courses/#{@course.id}/groups"
drag_item1 = '.group-user-name:contains("Test Student 1")'
drag_item2 = '.group-user-name:contains("Test Student 2")'
drop_target1 = '.group:contains("Test Group 1")'
drag_and_drop_element(fj(drag_item1), fj(drop_target1))
f(".group[data-id=\"#{@testgroup[0].id}\"] .toggle-group").click
wait_for_ajaximations
expect(f(".group[data-id=\"#{@testgroup[0].id}\"] .group-summary")).to include_text('1 student')
drag_and_drop_element(fj(drag_item2), fj(drop_target1))
wait_for_ajaximations
group_to_check = ff('.group .group-user .group-user-name')
expect(group_to_check[0]).to include_text('Test Student 1')
expect(group_to_check[1]).to include_text('Test Student 2')
expect(f(".group[data-id=\"#{@testgroup[0].id}\"] .group-summary")).to include_text('2 students')
end
context "using clone group set modal" do context "using clone group set modal" do
it "should clone a group set including its groups and memberships" do it "should clone a group set including its groups and memberships" do
group_test_setup(2,1,2) group_test_setup(2,1,2)