Class: AssessmentObject

Inherits:
Object
  • Object
show all
Includes:
PageHelper, Utilities, Workflows
Defined in:
lib/sakai-cle-test-api/data_objects/assessment.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Workflows

menu_link, #open_my_site_by_name

Methods included from Utilities

#current_hour, #current_month, #current_year, #get_filename, #in_15_minutes, #last_hour, #last_month, #last_year, #make, #make_date, #next_hour, #next_month, #next_year, #on_page, #random_alphanums, #random_alphanums_plus, #random_email, #random_high_ascii, #random_letters, #random_multiline, #random_nicelink, #random_string, #random_xss_string, #tomorrow, #yesterday

Methods included from PageHelper

#make, #on, #visit, #wait_until

Constructor Details

#initialize(browser, opts = {}) ⇒ AssessmentObject

Returns a new instance of AssessmentObject.



9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/sakai-cle-test-api/data_objects/assessment.rb', line 9

def initialize(browser, opts={})
  @browser = browser

  defaults = {
    :title=>random_alphanums,
    :site=>"placeholder"
  }
  options = defaults.merge(opts)
  @title=options[:title]
  @site=options[:site]
  raise "You must specify a Site for your Assessment" if @site==nil
end

Instance Attribute Details

#siteObject

Returns the value of attribute site.



7
8
9
# File 'lib/sakai-cle-test-api/data_objects/assessment.rb', line 7

def site
  @site
end

#titleObject

Returns the value of attribute title.



7
8
9
# File 'lib/sakai-cle-test-api/data_objects/assessment.rb', line 7

def title
  @title
end

Instance Method Details

#createObject



22
23
24
25
26
27
28
29
30
# File 'lib/sakai-cle-test-api/data_objects/assessment.rb', line 22

def create
  my_workspace.open_my_site_by_name @site unless @browser.title=~/#{@site}/
  tests_and_quizzes unless @browser.title=~/Tests & Quizzes$/
  on_page AssessmentsList do |page|
    page.title.set @title
    page.create
  end
  # Do more here eventually...
end