-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
95 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
seqgradevent,studentname,sisid,emailaddress,eventtype,eventdate,examresult,title,program,superv,examdate | ||
1,John Doe,123456,[email protected],Exam,2023-06-15,Pass,Thesis Title,Program A,Supervisor X,2023-07-01 | ||
2,Jane Smith,654321,[email protected],Defense,2023-06-20,Pass,Thesis Title B,Program B,Supervisor Y,2023-07-02 | ||
3,Alice Johnson,789012,[email protected],Exam,2023-06-25,Fail,Thesis Title C,Program C,Supervisor Z,2023-07-03 | ||
1,John Doe,123456789,[email protected],Exam,2023-06-15,Pass,Thesis Title,Program A,Supervisor X,2023-07-01 | ||
2,Jane Smith,654321476,[email protected],Defense,2023-06-20,Pass,Thesis Title B,Program B,Supervisor Y,2023-07-02 | ||
3,Alice Johnson,789012185,[email protected],Exam,2023-06-25,Fail,Thesis Title C,Program C,Supervisor Z,2023-07-03 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,17 +15,17 @@ class LoadGemRecordsTest < ActiveSupport::TestCase | |
|
||
assert_equal 1, records[0].seqgradevent | ||
assert_equal 'John Doe', records[0].studentname | ||
assert_equal 123456, records[0].sisid | ||
assert_equal 123456789, records[0].sisid | ||
assert_equal '[email protected]', records[0].emailaddress | ||
|
||
assert_equal 2, records[1].seqgradevent | ||
assert_equal 'Jane Smith', records[1].studentname | ||
assert_equal 654321, records[1].sisid | ||
assert_equal 654321476, records[1].sisid | ||
assert_equal '[email protected]', records[1].emailaddress | ||
|
||
assert_equal 3, records[2].seqgradevent | ||
assert_equal 'Alice Johnson', records[2].studentname | ||
assert_equal 789012, records[2].sisid | ||
assert_equal 789012185, records[2].sisid | ||
assert_equal '[email protected]', records[2].emailaddress | ||
|
||
assert_equal 2, records[0].committee_members.count | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters