Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2015-06-16 18:36:59
Size: 30
Editor: BalasankarC
Comment:
Revision 3 as of 2015-06-16 19:51:00
Size: 682
Editor: BalasankarC
Comment: Addning reference to solution
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:


=== Common Errors and solutions ===

==== 1. tests complaining about 'skip' ====
`: NoMethodError: undefined method `skip' for #<TestFoo:0x007fb75484f158>

'''Two solutions''' [[https://web.archive.org/web/20150616194946/http://stackoverflow.com/questions/28252036/how-to-run-existing-test-code-on-ruby-2-2|Reference]]
 *. Use test-unit (require 'test/unit' )and replace skip with
 *. use minitest (require 'minitest/autorun') and use skip itself


==== 2. Ruby2.2 reports NameError: uninitialized constant <Object>::<Something> while Ruby2.1 works ====
==== 3. Ruby2.2 not detecting sqlite3 gem and suggests to add it to Gemfile ====

Ruby 2.2 compatibility

Common Errors and solutions

1. tests complaining about 'skip'

: NoMethodError: undefined method skip' for #<TestFoo:0x007fb75484f158>

Two solutions Reference

  • . Use test-unit (require 'test/unit' )and replace skip with
  • . use minitest (require 'minitest/autorun') and use skip itself

2. Ruby2.2 reports NameError: uninitialized constant <Object>::<Something> while Ruby2.1 works

3. Ruby2.2 not detecting sqlite3 gem and suggests to add it to Gemfile