Tagged Questions
0
votes
0answers
50 views
Rails 3 testcase for RESTful paths
I have the following (nested) route:
folder_files GET /folders/:folder_id/files(.:format) {:action=>"index", :controller=>"files"}
In FilesControllerTest < ...
0
votes
2answers
668 views
Ruby Watir can't find the assert method outside of the running class?
I have a class that I want to use in many test cases:
require 'rubygems'
require 'test/unit'
require 'watir'
class Tests < Test::Unit::TestCase
def self.Run(browser)
# make sure Summary of ...
0
votes
1answer
145 views
how to use rspec to validate the ruby code?
class UbacParser
def initialize(str)
@str= str
@valid= true
base_parse
end
private
def base_parse
@protocol_code = Integer(@str[0..2]) rescue nil
...
0
votes
1answer
196 views
Ruby Test Cases
I have a task of writing some test cases on Ruby.
The task is as in example:
Visit the some website.
(Assert that certain page was displayed)
Enter a text into a textbox
Press the submit button
...