Sha256: d37982015d1a6da443348982390ad7f508b5859c551b9a170817c6d4213e869c
Contents?: true
Size: 1.88 KB
Versions: 2
Compression:
Stored size: 1.88 KB
Contents
require 'rho/rhocontroller' require 'Spec/spec_runner' def Test_equal(p1,p2) raise "Expected '#{p1.inspect.to_s}' equal to '#{p2.inspect.to_s}'" if p1 != p2 end def Test_not_equal(p1,p2) raise "Expected '#{p1.inspect.to_s}' not equal to '#{p2.inspect.to_s}'" if p1 == p2 end class SpecController < Rho::RhoController #GET /Spec def index @exc_count = 0 @count = 0 @errorMessages = "" $is_network_available = System.get_property('has_network') run_all_tests() @code = @exc_count > 0 ? 1 : 0 puts "***Total: " + @count.to_s puts "***Passed: " + (@count - @exc_count).to_s puts "***Failed: " + @exc_count.to_s render end def run_spec(name) begin puts "TEST: #{name}" require 'Spec/' + name.downcase()+'_spec' testClass = Object.const_get(name+'Test') testObj = testClass.new testClass.instance_methods(false).each do |meth| begin next unless meth.to_s().end_with?('_test') @count += 1 puts " - #{meth}" testObj.send meth rescue Exception => e @exc_count += 1 @errorMessages += "<br/>FAIL: '#{name}:#{meth}' failed: Error: #{e}\n" + "#{e.backtrace[1]}" if e.backtrace && e.backtrace.length > 0 puts "FAIL: '#{name}:#{meth}' failed: Error: #{e}\n" + "#{e.backtrace[1]}" if e.backtrace && e.backtrace.length > 0 #e.backtrace.each do |item| # puts item #end end end testObj.clear if testObj.respond_to?( :clear ) rescue Exception => e @exc_count += 1 puts "Test '#{name}' failed: Error: #{e}" e.backtrace.each do |item| puts item end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rhodes-2.0.3 | spec/phone_spec/app/Spec/controller.rb |
rhodes-2.0.2 | spec/phone_spec/app/Spec/controller.rb |