Sha256: bc241ebb1089f9041f5bc319303b92af3d0834c9b16f2cd7e1f4823b57b51f25

Contents?: true

Size: 700 Bytes

Versions: 4

Compression:

Stored size: 700 Bytes

Contents

#encoding: utf-8
require File.expand_path 'app/cases/spec_helper'
require File.expand_path 'app/cases/shared/login'

describe 'report issue', :mantis do
	context 'login' do
		include_shared 'login'
	end

	context 'report issue' do

		it 'should create report' do
			report_issue_page = $navi.goto_report_issue_page	
			summary = "simplexframe test #{Time.now.to_s}"
			desc = "description #{Time.now.to_s}"
			category = 'GUI'

			report_issue_page.create_issue category, summary, desc do |page|
				page.check_report_stay
			end

			view_page = $navi.goto_view_all_bug_page
			view_page.first_row[view_page.summary_column].text.should eq(summary)
		end

	end #context
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
simplexframe-0.0.04 lib/simplexframe/generators/simplexframe/app/cases/mantis/report_issue_spec.rb
simplexframe-0.0.03 lib/simplexframe/generators/simplexframe/app/cases/mantis/report_issue_spec.rb
simplexframe-0.0.02 lib/simplexframe/generators/simplexframe/app/cases/mantis/report_issue_spec.rb
simplexframe-0.0.01 lib/simplexframe/generators/simplexframe/app/cases/mantis/report_issue_spec.rb