0
votes
1answer
387 views

Verify not working in Ruby with Selenium::WebDriver

I am just starting to figure how to create unit tests using "test/unit". I copied the code generated by Selenium IDE and paste it into my Ruby test method. But when running it with Ruby.exe, for some ...
0
votes
1answer
45 views

Trying to validating a two-tier uniqueness for ruby on rails

I'm looking to write a test that can validate the uniqueness of a compound validation (if that makes sense). The validation itself is as follows: validates_uniqueness_of :name, :scope => ...
1
vote
1answer
105 views

rspec - why does this assert_equal comparison test work on a mac and not on Ubuntu? [duplicate]

Possible Duplicate: rspec - why does this attribute comparison usng assert_equal fail when they are the same, on ubuntu only? Ruby: 1.9.3-p194 Rails: 3.2.8 Ubuntu: 12.04 The test has ...
0
votes
0answers
79 views

Avoid assert_block to escape line breaks in Ruby

I'm implementing custom asserts based on assert_block (Ruby 1.8.7). However, when there are line breaks in the input, the message output of assert_block prints \n instead of an actual line break, ...
1
vote
1answer
2k views

Proper Assert_Raise Unit Testing and Use of Exception Class

I am working on Exercise 49 of Learn Ruby the Hard Way The exercise asks to write a unit test for each function provided. One of the items I am testing is if a proper exception is raised. It is ...
0
votes
1answer
131 views

using assert_equal and .join metho failed pass the unit testing, when learning RoR with the book Agile Development with Ruby on Rails

I just started learning Ruby on Rails, even Ruby language itself. after reading the Iteration B2: Unit Testing of Models and doing the following exercise: 1. The validation option :length checks the ...
2
votes
1answer
1k views

Ruby, assert_equal of two arrays of objects

I have the following situation. I am trying to write a unit test for an array of objects. The object is defined something like this: class Element attr_reader :title, :season, :episode def ...
1
vote
3answers
616 views

Rails Functional Test assert_select finds nothing after AJAX post

On Rails 2.3.2 I'm trying to test a view in a functional test def test_view get :form xhr :post, :add_to_cart, {:id => 1} post :create, {:param => value} assert_select 'title', 'Success!' ...
1
vote
1answer
606 views

JRuby and Test::Unit's assert_raise

I'm having trouble making assert_raise recognize java exceptions. I can do assert_raise(NativeException) { @iter.next } which works fine, but if I try to get more specific java_import ...
19
votes
6answers
7k views

Is it idiomatic Ruby to add an assert( ) method to Ruby's Kernel class?

I'm expanding my Ruby understanding by coding an equivalent of Kent Beck's xUnit in Ruby. Python (which Kent writes in) has an assert() method in the language which is used extensively. Ruby does ...