Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0e263613470f
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: effab6b70432
Choose a head ref
  • 2 commits
  • 6 files changed
  • 2 contributors

Commits on Jun 15, 2015

  1. Copy the full SHA
    375216b View commit details
  2. Merge pull request #937 from vais/rubyspecs-list-cleanup

    Latest RubySpecs + Run all Regexp rubyspecs
    elia committed Jun 15, 2015
    Copy the full SHA
    effab6b View commit details
Showing with 224 additions and 12 deletions.
  1. +2 −0 spec/filters/bugs/language.rb
  2. +2 −0 spec/filters/bugs/math.rb
  3. +1 −1 spec/filters/bugs/module.rb
  4. +213 −0 spec/filters/bugs/regular_expressions.rb
  5. +1 −1 spec/rubyspec
  6. +5 −10 spec/rubyspecs
2 changes: 2 additions & 0 deletions spec/filters/bugs/language.rb
Original file line number Diff line number Diff line change
@@ -54,6 +54,8 @@
fails "A class variable defined in a module can be accessed inside the class using the module methods"
fails "A class variable defined in a module is defined in the extended module"
fails "A class variable defined in a module is not defined in the extending module"
fails "A class variable defined in a module can be accessed from classes that extend the module"
fails "A class variable defined in a module can be accessed from modules that extend the module"

fails "A class definition raises TypeError if the constant qualifying the class is nil"
fails "A class definition raises TypeError if any constant qualifying the class is not a Module"
2 changes: 2 additions & 0 deletions spec/filters/bugs/math.rb
Original file line number Diff line number Diff line change
@@ -44,6 +44,7 @@
fails "Math.gamma returns +infinity given 0"
fails "Math.gamma returns -infinity given -0.0"
fails "Math.gamma returns Math.sqrt(Math::PI) given 0.5"
fails "Math.gamma returns exactly (n-1)! given n for n between 2 and 23"
fails "Math.gamma returns exactly 1! given 2"
fails "Math.gamma returns exactly 2! given 3"
fails "Math.gamma returns exactly 3! given 4"
@@ -66,6 +67,7 @@
fails "Math.gamma returns exactly 20! given 21"
fails "Math.gamma returns exactly 21! given 22"
fails "Math.gamma returns exactly 22! given 23"
fails "Math.gamma returns approximately (n-1)! given n for n between 24 and 30"
fails "Math.gamma returns approximately 23! given 24"
fails "Math.gamma returns approximately 24! given 25"
fails "Math.gamma returns approximately 25! given 26"
2 changes: 1 addition & 1 deletion spec/filters/bugs/module.rb
Original file line number Diff line number Diff line change
@@ -142,7 +142,7 @@
fails "Module#const_missing raises NameError and does not include toplevel Object"
fails "Module.constants returns an array of Symbol names"
fails "Module.constants returns Module's constants when given a parameter"
fails "Module#constants returns an array of Symbol names of all constants defined in the moduleand all included modules"
fails "Module#constants returns an array of Symbol names of all constants defined in the module and all included modules"
fails "Module#constants returns all constants including inherited when passed true"
fails "Module#constants returns all constants including inherited when passed some object"
fails "Module#constants includes names of constants defined after a module is included"
Loading