sakai-oae-test-api 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -17,17 +17,17 @@ end
17
17
 
18
18
  class AssessmentsList
19
19
  include AssessmentsFrame
20
- CLEElements.modularize(AssessmentsListMethods, :index=>2)
20
+ include AssessmentsListMethods, :index=>2)
21
21
  end
22
22
 
23
23
  class PreviewOverview
24
24
  include AssessmentsFrame
25
- CLEElements.modularize(PreviewOverviewMethods, :index=>2)
25
+ include PreviewOverviewMethods, :index=>2)
26
26
  end
27
27
 
28
28
  class AssessmentSettings
29
29
  include AssessmentsFrame
30
- CLEElements.modularize(AssessmentSettingsMethods, :index=>2)
30
+ include AssessmentSettingsMethods, :index=>2)
31
31
  end
32
32
 
33
33
  class AssessmentTotalScores
@@ -37,82 +37,82 @@ end
37
37
 
38
38
  class EditAssessment
39
39
  include AssessmentsFrame
40
- CLEElements.modularize(EditAssessmentMethods, :index=>2)
40
+ include EditAssessmentMethods, :index=>2)
41
41
  end
42
42
 
43
43
  class AddEditAssessmentPart
44
44
  include AssessmentsFrame
45
- CLEElements.modularize(AddEditAssessmentPartMethods, :index=>2)
45
+ include AddEditAssessmentPartMethods, :index=>2)
46
46
  end
47
47
 
48
48
  class PublishAssessment
49
49
  include AssessmentsFrame
50
- CLEElements.modularize(PublishAssessmentMethods, :index=>2)
50
+ include PublishAssessmentMethods, :index=>2)
51
51
  end
52
52
 
53
53
  class MultipleChoice
54
54
  include AssessmentsFrame
55
- CLEElements.modularize(MultipleChoiceMethods, :index=>2)
55
+ include MultipleChoiceMethods, :index=>2)
56
56
  end
57
57
 
58
58
  class Survey
59
59
  include AssessmentsFrame
60
- CLEElements.modularize(SurveyMethods, :index=>2)
60
+ include SurveyMethods, :index=>2)
61
61
  end
62
62
 
63
63
  class ShortAnswer
64
64
  include AssessmentsFrame
65
- CLEElements.modularize(ShortAnswerMethods, :index=>2)
65
+ include ShortAnswerMethods, :index=>2)
66
66
  end
67
67
 
68
68
  class FillInBlank
69
69
  include AssessmentsFrame
70
- CLEElements.modularize(FillInBlankMethods, :index=>2)
70
+ include FillInBlankMethods, :index=>2)
71
71
  end
72
72
 
73
73
  class NumericResponse
74
74
  include AssessmentsFrame
75
- CLEElements.modularize(NumericResponseMethods, :index=>2)
75
+ include NumericResponseMethods, :index=>2)
76
76
  end
77
77
 
78
78
  class Matching
79
79
  include AssessmentsFrame
80
- CLEElements.modularize(MatchingMethods, :index=>2)
80
+ include MatchingMethods, :index=>2)
81
81
  end
82
82
 
83
83
  class TrueFalse
84
84
  include AssessmentsFrame
85
- CLEElements.modularize(TrueFalseMethods, :index=>2)
85
+ include TrueFalseMethods, :index=>2)
86
86
  end
87
87
 
88
88
  class AudioRecording
89
89
  include AssessmentsFrame
90
- CLEElements.modularize(AudioRecordingMethods, :index=>2)
90
+ include AudioRecordingMethods, :index=>2)
91
91
  end
92
92
 
93
93
  class FileUpload
94
94
  include AssessmentsFrame
95
- CLEElements.modularize(FileUploadMethods, :index=>2)
95
+ include FileUploadMethods, :index=>2)
96
96
  end
97
97
 
98
98
  class EditAssessmentType
99
99
  include AssessmentsFrame
100
- CLEElements.modularize(EditAssessmentTypeMethods, :index=>2)
100
+ include EditAssessmentTypeMethods, :index=>2)
101
101
  end
102
102
 
103
103
  class AddQuestionPool
104
104
  include AssessmentsFrame
105
- CLEElements.modularize(AddQuestionPoolMethods, :index=>2)
105
+ include AddQuestionPoolMethods, :index=>2)
106
106
  end
107
107
 
108
108
  class EditQuestionPool
109
109
  include AssessmentsFrame
110
- CLEElements.modularize(EditQuestionPoolMethods, :index=>2)
110
+ include EditQuestionPoolMethods, :index=>2)
111
111
  end
112
112
 
113
113
  class QuestionPoolsList
114
114
  include AssessmentsFrame
115
- CLEElements.modularize(QuestionPoolsListMethods, :index=>2)
115
+ include QuestionPoolsListMethods, :index=>2)
116
116
  end
117
117
 
118
118
  class PoolImport
@@ -122,7 +122,7 @@ end
122
122
 
123
123
  class SelectQuestionType
124
124
  include AssessmentsFrame
125
- CLEElements.modularize(SelectQuestionTypeMethods, :index=>2)
125
+ include SelectQuestionTypeMethods, :index=>2)
126
126
  end
127
127
 
128
128
  class TakeAssessmentList
@@ -137,10 +137,10 @@ end
137
137
 
138
138
  class ConfirmSubmission
139
139
  include AssessmentsFrame
140
- CLEElements.modularize(ConfirmSubmissionMethods, :index=>2)
140
+ include ConfirmSubmissionMethods, :index=>2)
141
141
  end
142
142
 
143
143
  class SubmissionSummary
144
144
  include AssessmentsFrame
145
- CLEElements.modularize(SubmissionSummaryMethods, :index=>2)
145
+ include SubmissionSummaryMethods, :index=>2)
146
146
  end
@@ -17,37 +17,37 @@ end
17
17
  #
18
18
  class AssignmentsList
19
19
  include AssignmentsFrame
20
- CLEElements.modularize( AssignmentsListMethods, :index=>2)
20
+ include AssignmentsListMethods, :index=>2)
21
21
  end
22
22
 
23
23
  #
24
24
  class AssignmentAdd
25
25
  include AssignmentsFrame
26
- CLEElements.modularize( AssignmentAddMethods, :index=>2)
26
+ include AssignmentAddMethods, :index=>2)
27
27
  end
28
28
 
29
29
  #
30
30
  class AssignmentsPermissions
31
31
  include AssignmentsFrame
32
- CLEElements.modularize( AssignmentsPermissionsMethods, :index=>2)
32
+ include AssignmentsPermissionsMethods, :index=>2)
33
33
  end
34
34
 
35
35
  #
36
36
  class AssignmentsPreview
37
37
  include AssignmentsFrame
38
- CLEElements.modularize( AssignmentsPreviewMethods, :index=>2)
38
+ include AssignmentsPreviewMethods, :index=>2)
39
39
  end
40
40
 
41
41
  #
42
42
  class AssignmentsReorder
43
43
  include AssignmentsFrame
44
- CLEElements.modularize( AssignmentsReorderMethods, :index=>2)
44
+ include AssignmentsReorderMethods, :index=>2)
45
45
  end
46
46
 
47
47
  #
48
48
  class AssignmentStudent
49
49
  include AssignmentsFrame
50
- CLEElements.modularize( AssignmentStudentMethods, :index=>2)
50
+ include AssignmentStudentMethods, :index=>2)
51
51
  end
52
52
 
53
53
  #
@@ -65,13 +65,13 @@ end
65
65
  #
66
66
  class AssignmentSubmissionList
67
67
  include AssignmentsFrame
68
- CLEElements.modularize( AssignmentSubmissionListMethods, :index=>2)
68
+ include AssignmentSubmissionListMethods, :index=>2)
69
69
  end
70
70
 
71
71
  #
72
72
  class AssignmentSubmission
73
73
  include AssignmentsFrame
74
- CLEElements.modularize( AssignmentSubmissionMethods, :index=>2)
74
+ include AssignmentSubmissionMethods, :index=>2)
75
75
  end
76
76
 
77
77
  #
@@ -83,5 +83,5 @@ end
83
83
  #
84
84
  class StudentView
85
85
  include AssignmentsFrame
86
- CLEElements.modularize( StudentViewMethods, :index=>2)
86
+ include StudentViewMethods, :index=>2)
87
87
  end
@@ -34,24 +34,24 @@ end
34
34
  #
35
35
  class AddEditEvent
36
36
  include CalendarFrame
37
- CLEElements.modularize(AddEditEventMethods, :class=>"portletMainIframe")
37
+ include AddEditEventMethods
38
38
  end
39
39
 
40
40
  # The page that appears when the Frequency button is clicked on the Add/Edit
41
41
  # Event page.
42
42
  class EventFrequency
43
43
  include CalendarFrame
44
- CLEElements.modularize(EventFrequencyMethods, :class=>"portletMainIframe")
44
+ include EventFrequencyMethods
45
45
  end
46
46
 
47
47
  class AddEditFields
48
48
  include CalendarFrame
49
- CLEElements.modularize(AddEditFieldsMethods, :class=>"portletMainIframe")
49
+ include AddEditFieldsMethods
50
50
  end
51
51
 
52
52
  class ImportStepOne
53
53
  include CalendarFrame
54
- CLEElements.modularize(ImportStepOneMethods, :class=>"portletMainIframe")
54
+ include ImportStepOneMethods
55
55
  end
56
56
 
57
57
  class ImportStepTwo
@@ -61,5 +61,5 @@ end
61
61
 
62
62
  class ImportStepThree
63
63
  include CalendarFrame
64
- CLEElements.modularize(ImportStepThreeMethods, :class=>"portletMainIframe")
64
+ include ImportStepThreeMethods
65
65
  end
@@ -17,7 +17,7 @@ end
17
17
  class EmailArchive
18
18
  include PageObject
19
19
  include EmailArchiveFrame
20
- CLEElements.modularize(EmailArchiveMethods, :index=>2)
20
+ include EmailArchiveMethods, :index=>2)
21
21
  end
22
22
 
23
23
  class EmailArchiveOptions
@@ -34,7 +34,7 @@ end
34
34
  class ComposeForumMessage
35
35
  include PageObject
36
36
  include ForumFrame
37
- CLEElements.modularize(ComposeForumMessageMethods, :index=>2)
37
+ include ComposeForumMessageMethods, :index=>2)
38
38
  end
39
39
 
40
40
  class ForumTemplateSettings
@@ -52,11 +52,11 @@ end
52
52
  class EditForum
53
53
  include PageObject
54
54
  include ForumFrame
55
- CLEElements.modularize(EditForumMethods, :index=>2)
55
+ include EditForumMethods, :index=>2)
56
56
  end
57
57
 
58
58
  class AddEditTopic
59
59
  include PageObject
60
60
  include ForumFrame
61
- CLEElements.modularize(AddEditTopicMethods, :index=>2)
61
+ include AddEditTopicMethods, :index=>2)
62
62
  end
@@ -17,5 +17,5 @@ end
17
17
  class Gradebook2
18
18
  include PageObject
19
19
  include Gradebook2Frame
20
- CLEElements.modularize(Gradebook2Methods, :index=>2)
20
+ include Gradebook2Methods, :index=>2)
21
21
  end
@@ -21,20 +21,20 @@ end
21
21
  class MessagesSentList
22
22
  include PageObject
23
23
  include MessagesFrame
24
- CLEElements.modularize(MessagesSentListMethods, :class=>"portletMainIframe")
24
+ include MessagesSentListMethods
25
25
  end
26
26
 
27
27
  class MessagesReceivedList
28
28
  include PageObject
29
29
  include MessagesFrame
30
- CLEElements.modularize(MessagesSentListMethods, :class=>"portletMainIframe")
30
+ include MessagesSentListMethods
31
31
  end
32
32
 
33
33
  # Page for the Contents of a Custom Folder for Messages
34
34
  class FolderList #FIXME
35
35
  include PageObject
36
36
  include MessagesFrame
37
- CLEElements.modularize(FolderListMethods, :class=>"portletMainIframe")
37
+ include FolderListMethods
38
38
  end
39
39
 
40
40
  # Page that appears when you want to move a message
@@ -42,21 +42,21 @@ end
42
42
  class MoveMessageTo
43
43
  include PageObject
44
44
  include MessagesFrame
45
- CLEElements.modularize(MoveMessageToMethods, :class=>"portletMainIframe")
45
+ include MoveMessageToMethods
46
46
  end
47
47
 
48
48
  # The page showing the list of deleted messages.
49
49
  class MessagesDeletedList
50
50
  include PageObject
51
51
  include MessagesFrame
52
- CLEElements.modularize(MessagesDeletedListMethods, :class=>"portletMainIframe")
52
+ include MessagesDeletedListMethods
53
53
  end
54
54
 
55
55
  # The page showing the list of Draft messages.
56
56
  class MessagesDraftList
57
57
  include PageObject
58
58
  include MessagesFrame
59
- CLEElements.modularize(MessagesDraftListMethods, :class=>"portletMainIframe")
59
+ include MessagesDraftListMethods
60
60
  end
61
61
 
62
62
  # The Page where you are reading a Message.
@@ -69,20 +69,20 @@ end
69
69
  class ComposeMessage
70
70
  include PageObject
71
71
  include MessagesFrame
72
- CLEElements.modularize(ComposeMessageMethods, :class=>"portletMainIframe")
72
+ include ComposeMessageMethods
73
73
  end
74
74
 
75
75
  class ReplyToMessage
76
76
  include PageObject
77
77
  include MessagesFrame
78
- CLEElements.modularize(ReplyToMessageMethods, :class=>"portletMainIframe")
78
+ include ReplyToMessageMethods
79
79
  end
80
80
 
81
81
  # The page for composing a message
82
82
  class ForwardMessage
83
83
  include PageObject
84
84
  include MessagesFrame
85
- CLEElements.modularize(ForwardMessageMethods, :class=>"portletMainIframe")
85
+ include ForwardMessageMethods
86
86
  end
87
87
 
88
88
  # The page that appears when you select to
@@ -98,7 +98,7 @@ end
98
98
  class MessagesNewFolder
99
99
  include PageObject
100
100
  include MessagesFrame
101
- CLEElements.modularize(MessagesNewFolderMethods, :class=>"portletMainIframe")
101
+ include MessagesNewFolderMethods
102
102
  end
103
103
 
104
104
  # The page for editing a Message Folder's settings
@@ -15,5 +15,5 @@ end
15
15
  class News
16
16
  include PageObject
17
17
  include NewsFrame
18
- CLEElements.modularize(NewsMethods, :index=>2)
18
+ include NewsMethods, :index=>2)
19
19
  end
@@ -16,14 +16,14 @@ end
16
16
  class Polls
17
17
  include PageObject
18
18
  include PollsFrame
19
- CLEElements.modularize(PollsMethods, :class=>"portletMainIframe")
19
+ include PollsMethods
20
20
  end
21
21
 
22
22
  #
23
23
  class AddEditPoll
24
24
  include PageObject
25
25
  include PollsFrame
26
- CLEElements.modularize(AddEditPollMethods, :class=>"portletMainIframe")
26
+ include AddEditPollMethods
27
27
  end
28
28
 
29
29
  #
@@ -23,5 +23,5 @@ end
23
23
  class EditProfile
24
24
  include PageObject
25
25
  include ProfileFrame
26
- CLEElements.modularize(EditProfileMethods, :index=>2)
26
+ include EditProfileMethods, :index=>2)
27
27
  end
@@ -17,7 +17,7 @@ class Profile2
17
17
  include PageObject
18
18
  include Profile2Frame
19
19
  include Profile2Nav
20
- CLEElements.modularize(Profile2Methods, :index=>2)
20
+ include Profile2Methods, :index=>2)
21
21
  end
22
22
 
23
23
  #
@@ -25,28 +25,28 @@ class Profile2Preferences
25
25
  include PageObject
26
26
  include Profile2Frame
27
27
  include Profile2Nav
28
- CLEElements.modularize(Profile2PreferencesMethods, :index=>2)
28
+ include Profile2PreferencesMethods, :index=>2)
29
29
  end
30
30
 
31
31
  class Profile2Privacy
32
32
  include PageObject
33
33
  include Profile2Frame
34
34
  include Profile2Nav
35
- CLEElements.modularize(Profile2PrivacyMethods, :index=>2)
35
+ include Profile2PrivacyMethods, :index=>2)
36
36
  end
37
37
 
38
38
  class Profile2Search
39
39
  include PageObject
40
40
  include Profile2Frame
41
41
  include Profile2Nav
42
- CLEElements.modularize(Profile2SearchMethods, :index=>2)
42
+ include Profile2SearchMethods, :index=>2)
43
43
  end
44
44
 
45
45
  class Profile2Connections
46
46
  include PageObject
47
47
  include Profile2Frame
48
48
  include Profile2Nav
49
- CLEElements.modularize(Profile2ConnectionsMethods, :index=>2)
49
+ include Profile2ConnectionsMethods, :index=>2)
50
50
  end
51
51
 
52
52
  class Profile2View
@@ -29,7 +29,7 @@ class AddEditSections
29
29
  include PageObject
30
30
  include SectionsFrame
31
31
  include SectionsMenu
32
- CLEElements.modularize(AddEditSectionsMethods, :index=>2)
32
+ include AddEditSectionsMethods, :index=>2)
33
33
  end
34
34
 
35
35
  #
@@ -37,7 +37,7 @@ class AssignTeachingAssistants
37
37
  include PageObject
38
38
  include SectionsFrame
39
39
  include SectionsMenu
40
- CLEElements.modularize(AssignTeachingAssistantsMethods, :index=>2)
40
+ include AssignTeachingAssistantsMethods, :index=>2)
41
41
  end
42
42
 
43
43
  #
@@ -45,7 +45,7 @@ class AssignStudents
45
45
  include PageObject
46
46
  include SectionsFrame
47
47
  include SectionsMenu
48
- CLEElements.modularize(AssignStudentsMethods, :index=>2)
48
+ include AssignStudentsMethods, :index=>2)
49
49
  end
50
50
 
51
51
  # The Options page for Sections.
@@ -53,5 +53,5 @@ class SectionsOptions
53
53
  include PageObject
54
54
  include SectionsFrame
55
55
  include SectionsMenu
56
- CLEElements.modularize(AssignStudentsMethods, :index=>2)
56
+ include AssignStudentsMethods, :index=>2)
57
57
  end
@@ -27,19 +27,19 @@ end
27
27
  class AddEditSyllabusItem
28
28
  include PageObject
29
29
  include SyllabusFrame
30
- CLEElements.modularize(AddEditSyllabusItemMethods, :index=>2)
30
+ include AddEditSyllabusItemMethods, :index=>2)
31
31
  end
32
32
 
33
33
  class SyllabusPreview
34
34
  include PageObject
35
35
  include SyllabusFrame
36
- CLEElements.modularize(SyllabusPreviewMethods, :index=>2)
36
+ include SyllabusPreviewMethods, :index=>2)
37
37
  end
38
38
 
39
39
  class SyllabusRedirect
40
40
  include PageObject
41
41
  include SyllabusFrame
42
- CLEElements.modularize(SyllabusRedirectMethods, :index=>2)
42
+ include SyllabusRedirectMethods, :index=>2)
43
43
  end
44
44
 
45
45
  class DeleteSyllabusItems
@@ -1,6 +1,6 @@
1
1
  spec = Gem::Specification.new do |s|
2
2
  s.name = 'sakai-oae-test-api'
3
- s.version = '0.0.6'
3
+ s.version = '0.0.7'
4
4
  s.summary = %q{Sakai-OAE functional testing API for rSmart Academic}
5
5
  s.description = %q{The Sakai-OAE gem provides an API for interacting with the web pages and page elements in rSmart's deployment of the Sakai Open Academic Environment.}
6
6
  s.files = Dir.glob("**/**/**")
@@ -11,6 +11,6 @@ spec = Gem::Specification.new do |s|
11
11
  s.add_dependency 'page-object', '>= 0.6.6'
12
12
  s.add_dependency 'watir-webdriver', '>= 0.5.5'
13
13
  s.add_dependency 'selenium-webdriver', '>= 2.21.2'
14
- s.add_dependency 'kuali-sakai-common-lib', '>= 0.0.6'
14
+ s.add_dependency 'kuali-sakai-common-lib', '= 0.0.7'
15
15
  s.required_ruby_version = '>= 1.9.2'
16
16
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sakai-oae-test-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -64,17 +64,17 @@ dependencies:
64
64
  requirement: !ruby/object:Gem::Requirement
65
65
  none: false
66
66
  requirements:
67
- - - ! '>='
67
+ - - '='
68
68
  - !ruby/object:Gem::Version
69
- version: 0.0.6
69
+ version: 0.0.7
70
70
  type: :runtime
71
71
  prerelease: false
72
72
  version_requirements: !ruby/object:Gem::Requirement
73
73
  none: false
74
74
  requirements:
75
- - - ! '>='
75
+ - - '='
76
76
  - !ruby/object:Gem::Version
77
- version: 0.0.6
77
+ version: 0.0.7
78
78
  description: The Sakai-OAE gem provides an API for interacting with the web pages
79
79
  and page elements in rSmart's deployment of the Sakai Open Academic Environment.
80
80
  email: