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: e8eff1636fe4
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 46fbacf1fd5a
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Apr 10, 2015

  1. Copy the full SHA
    2dfa479 View commit details
  2. Merge pull request #793 from vais/integer

    Add Integer_spec and filter out the failures until Kernel#Integer is fixed
    meh committed Apr 10, 2015

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    46fbacf View commit details
Showing with 374 additions and 0 deletions.
  1. +373 −0 spec/filters/bugs/kernel.rb
  2. +1 −0 spec/rubyspecs
373 changes: 373 additions & 0 deletions spec/filters/bugs/kernel.rb
Original file line number Diff line number Diff line change
@@ -1,2 +1,375 @@
opal_filter "Kernel" do
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 2"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 3"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 4"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 5"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 6"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 7"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 8"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 9"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 10"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 11"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 12"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 13"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 14"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 15"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 16"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 17"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 18"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 19"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 20"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 21"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 22"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 23"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 24"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 25"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 26"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 27"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 28"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 29"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 30"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 31"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 32"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 33"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 34"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 35"
fails "Kernel.Integer raises an ArgumentError when the String contains digits out of range of radix 36"
fails "Kernel.Integer returns a Fixnum or Bignum object"
fails "Kernel.Integer calls to_i on Rationals"
fails "Kernel.Integer calls to_i on an object whose to_int returns nil"
fails "An exception occurred during: Mock.verify_count"
fails "Kernel.Integer raises a TypeError if to_i returns a value that is not an Integer"
fails "Kernel.Integer raises a TypeError if to_int returns nil and no to_i exists"
fails "Kernel.Integer raises an ArgumentError if the String is a null byte"
fails "Kernel.Integer raises an ArgumentError if the String starts with a null byte"
fails "Kernel.Integer raises an ArgumentError if the String ends with a null byte"
fails "Kernel.Integer raises an ArgumentError if the String contains a null byte"
fails "Kernel.Integer raises an ArgumentError if there are leading _s"
fails "Kernel.Integer raises an ArgumentError if there are trailing _s"
fails "Kernel.Integer ignores an embedded _"
fails "Kernel.Integer raises an ArgumentError if there are multiple embedded _s"
fails "Kernel.Integer raises an ArgumentError if there is a space between the + and number"
fails "Kernel.Integer raises an ArgumentError if there are multiple leading +s"
fails "Kernel.Integer raises an ArgumentError if there are trailing +s"
fails "Kernel.Integer raises an ArgumentError if there are multiple leading -s"
fails "Kernel.Integer raises an ArgumentError if there are trailing -s"
fails "Kernel.Integer raises an ArgumentError if there is a period"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as hex"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as hex"
fails "Kernel.Integer parses the value as a binary number if there's a leading 0b"
fails "Kernel.Integer is a positive binary number if there's a leading +0b"
fails "Kernel.Integer is a negative binary number if there's a leading -0b"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as binary"
fails "Kernel.Integer parses the value as a binary number if there's a leading 0B"
fails "Kernel.Integer is a positive binary number if there's a leading +0B"
fails "Kernel.Integer is a negative binary number if there's a leading -0B"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as binary"
fails "Kernel.Integer parses the value as an octal number if there's a leading 0o"
fails "Kernel.Integer is a positive octal number if there's a leading +0o"
fails "Kernel.Integer is a negative octal number if there's a leading -0o"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as octal"
fails "Kernel.Integer parses the value as an octal number if there's a leading 0O"
fails "Kernel.Integer is a positive octal number if there's a leading +0O"
fails "Kernel.Integer is a negative octal number if there's a leading -0O"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as octal"
fails "Kernel.Integer parses the value as an octal number if there's a leading 0"
fails "Kernel.Integer is a positive octal number if there's a leading +0"
fails "Kernel.Integer is a negative octal number if there's a leading -0"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as octal"
fails "Kernel.Integer parses the value as a decimal number if there's a leading 0D"
fails "Kernel.Integer is a positive decimal number if there's a leading +0D"
fails "Kernel.Integer is a negative decimal number if there's a leading -0D"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as decimal"
fails "Kernel.Integer parses the value as a decimal number if there's a leading 0d"
fails "Kernel.Integer is a positive decimal number if there's a leading +0d"
fails "Kernel.Integer is a negative decimal number if there's a leading -0d"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as decimal"
fails "Kernel.Integer raises an ArgumentError if the String is a null byte"
fails "Kernel.Integer raises an ArgumentError if the String starts with a null byte"
fails "Kernel.Integer raises an ArgumentError if the String ends with a null byte"
fails "Kernel.Integer raises an ArgumentError if the String contains a null byte"
fails "Kernel.Integer raises an ArgumentError if there are leading _s"
fails "Kernel.Integer raises an ArgumentError if there are trailing _s"
fails "Kernel.Integer ignores an embedded _"
fails "Kernel.Integer raises an ArgumentError if there are multiple embedded _s"
fails "Kernel.Integer raises an ArgumentError if there is a space between the + and number"
fails "Kernel.Integer raises an ArgumentError if there are multiple leading +s"
fails "Kernel.Integer raises an ArgumentError if there are trailing +s"
fails "Kernel.Integer raises an ArgumentError if there are multiple leading -s"
fails "Kernel.Integer raises an ArgumentError if there are trailing -s"
fails "Kernel.Integer raises an ArgumentError if there is a period"
fails "Kernel.Integer raises an ArgumentError for a base of 1"
fails "Kernel.Integer raises an ArgumentError for a base of 37"
fails "Kernel.Integer raises an ArgumentError for letters invalid in the given base"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 2"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 3"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 4"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 5"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 6"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 7"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 8"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 9"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 10"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 11"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 12"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 13"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 14"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0x and the base is 15"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as hex and the base is 16"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 2"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 3"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 4"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 5"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 6"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 7"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 8"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 9"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 10"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 11"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 12"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 13"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 14"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0X and the base is 15"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as hex and the base is 16"
fails "Kernel.Integer parses the value as a binary number if there's a leading 0b and the base is 2"
fails "Kernel.Integer is a positive binary number if there's a leading +0b and a base of 2"
fails "Kernel.Integer is a negative binary number if there's a leading -0b and a base of 2"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as binary and the base is 2"
fails "Kernel.Integer parses the value as a binary number if there's a leading 0B and the base is 2"
fails "Kernel.Integer is a positive binary number if there's a leading +0B and a base of 2"
fails "Kernel.Integer is a negative binary number if there's a leading -0B and a base of 2"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as binary and the base is 2"
fails "Kernel.Integer parses the value as an octal number if there's a leading 0o and a base of 8"
fails "Kernel.Integer is a positive octal number if there's a leading +0o and a base of 8"
fails "Kernel.Integer is a negative octal number if there's a leading -0o and a base of 8"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as octal and the base is 8"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0o and the base is 2"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0o and the base is 3"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0o and the base is 4"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0o and the base is 5"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0o and the base is 6"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0o and the base is 7"
fails "Kernel.Integer parses the value as an octal number if there's a leading 0O and a base of 8"
fails "Kernel.Integer is a positive octal number if there's a leading +0O and a base of 8"
fails "Kernel.Integer is a negative octal number if there's a leading -0O and a base of 8"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as octal and the base is 8"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0O and the base is 2"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0O and the base is 3"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0O and the base is 4"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0O and the base is 5"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0O and the base is 6"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0O and the base is 7"
fails "Kernel.Integer parses the value as a decimal number if there's a leading 0D and a base of 10"
fails "Kernel.Integer is a positive decimal number if there's a leading +0D and a base of 10"
fails "Kernel.Integer is a negative decimal number if there's a leading -0D and a base of 10"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as decimal and the base is 10"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0D and the base is 2"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0D and the base is 3"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0D and the base is 4"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0D and the base is 5"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0D and the base is 6"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0D and the base is 7"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0D and the base is 8"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0D and the base is 9"
fails "Kernel.Integer raises an ArgumentError if a base is given for a non-String value"
fails "Kernel.Integer parses the value as a decimal number if there's a leading 0d and a base of 10"
fails "Kernel.Integer is a positive decimal number if there's a leading +0d and a base of 10"
fails "Kernel.Integer is a negative decimal number if there's a leading -0d and a base of 10"
fails "Kernel.Integer raises an ArgumentError if the number cannot be parsed as decimal and the base is 10"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0d and the base is 2"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0d and the base is 3"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0d and the base is 4"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0d and the base is 5"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0d and the base is 6"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0d and the base is 7"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0d and the base is 8"
fails "Kernel.Integer raises an ArgumentError if the number begins with 0d and the base is 9"
fails "Kernel.Integer raises an ArgumentError if a base is given for a non-String value"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 2"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 3"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 4"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 5"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 6"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 7"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 8"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 9"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 10"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 11"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 12"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 13"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 14"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 15"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 16"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 17"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 18"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 19"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 20"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 21"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 22"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 23"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 24"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 25"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 26"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 27"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 28"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 29"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 30"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 31"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 32"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 33"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 34"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 35"
fails "Kernel#Integer raises an ArgumentError when the String contains digits out of range of radix 36"
fails "Kernel#Integer returns a Fixnum or Bignum object"
fails "Kernel#Integer calls to_i on Rationals"
fails "Kernel#Integer calls to_i on an object whose to_int returns nil"
fails "An exception occurred during: Mock.verify_count"
fails "Kernel#Integer raises a TypeError if to_i returns a value that is not an Integer"
fails "Kernel#Integer raises a TypeError if to_int returns nil and no to_i exists"
fails "Kernel#Integer raises an ArgumentError if the String is a null byte"
fails "Kernel#Integer raises an ArgumentError if the String starts with a null byte"
fails "Kernel#Integer raises an ArgumentError if the String ends with a null byte"
fails "Kernel#Integer raises an ArgumentError if the String contains a null byte"
fails "Kernel#Integer raises an ArgumentError if there are leading _s"
fails "Kernel#Integer raises an ArgumentError if there are trailing _s"
fails "Kernel#Integer ignores an embedded _"
fails "Kernel#Integer raises an ArgumentError if there are multiple embedded _s"
fails "Kernel#Integer raises an ArgumentError if there is a space between the + and number"
fails "Kernel#Integer raises an ArgumentError if there are multiple leading +s"
fails "Kernel#Integer raises an ArgumentError if there are trailing +s"
fails "Kernel#Integer raises an ArgumentError if there are multiple leading -s"
fails "Kernel#Integer raises an ArgumentError if there are trailing -s"
fails "Kernel#Integer raises an ArgumentError if there is a period"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as hex"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as hex"
fails "Kernel#Integer parses the value as a binary number if there's a leading 0b"
fails "Kernel#Integer is a positive binary number if there's a leading +0b"
fails "Kernel#Integer is a negative binary number if there's a leading -0b"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as binary"
fails "Kernel#Integer parses the value as a binary number if there's a leading 0B"
fails "Kernel#Integer is a positive binary number if there's a leading +0B"
fails "Kernel#Integer is a negative binary number if there's a leading -0B"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as binary"
fails "Kernel#Integer parses the value as an octal number if there's a leading 0o"
fails "Kernel#Integer is a positive octal number if there's a leading +0o"
fails "Kernel#Integer is a negative octal number if there's a leading -0o"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as octal"
fails "Kernel#Integer parses the value as an octal number if there's a leading 0O"
fails "Kernel#Integer is a positive octal number if there's a leading +0O"
fails "Kernel#Integer is a negative octal number if there's a leading -0O"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as octal"
fails "Kernel#Integer parses the value as an octal number if there's a leading 0"
fails "Kernel#Integer is a positive octal number if there's a leading +0"
fails "Kernel#Integer is a negative octal number if there's a leading -0"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as octal"
fails "Kernel#Integer parses the value as a decimal number if there's a leading 0D"
fails "Kernel#Integer is a positive decimal number if there's a leading +0D"
fails "Kernel#Integer is a negative decimal number if there's a leading -0D"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as decimal"
fails "Kernel#Integer parses the value as a decimal number if there's a leading 0d"
fails "Kernel#Integer is a positive decimal number if there's a leading +0d"
fails "Kernel#Integer is a negative decimal number if there's a leading -0d"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as decimal"
fails "Kernel#Integer raises an ArgumentError if the String is a null byte"
fails "Kernel#Integer raises an ArgumentError if the String starts with a null byte"
fails "Kernel#Integer raises an ArgumentError if the String ends with a null byte"
fails "Kernel#Integer raises an ArgumentError if the String contains a null byte"
fails "Kernel#Integer raises an ArgumentError if there are leading _s"
fails "Kernel#Integer raises an ArgumentError if there are trailing _s"
fails "Kernel#Integer ignores an embedded _"
fails "Kernel#Integer raises an ArgumentError if there are multiple embedded _s"
fails "Kernel#Integer raises an ArgumentError if there is a space between the + and number"
fails "Kernel#Integer raises an ArgumentError if there are multiple leading +s"
fails "Kernel#Integer raises an ArgumentError if there are trailing +s"
fails "Kernel#Integer raises an ArgumentError if there are multiple leading -s"
fails "Kernel#Integer raises an ArgumentError if there are trailing -s"
fails "Kernel#Integer raises an ArgumentError if there is a period"
fails "Kernel#Integer raises an ArgumentError for a base of 1"
fails "Kernel#Integer raises an ArgumentError for a base of 37"
fails "Kernel#Integer raises an ArgumentError for letters invalid in the given base"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 2"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 3"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 4"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 5"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 6"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 7"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 8"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 9"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 10"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 11"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 12"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 13"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 14"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0x and the base is 15"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as hex and the base is 16"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 2"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 3"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 4"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 5"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 6"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 7"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 8"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 9"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 10"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 11"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 12"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 13"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 14"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0X and the base is 15"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as hex and the base is 16"
fails "Kernel#Integer parses the value as a binary number if there's a leading 0b and the base is 2"
fails "Kernel#Integer is a positive binary number if there's a leading +0b and a base of 2"
fails "Kernel#Integer is a negative binary number if there's a leading -0b and a base of 2"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as binary and the base is 2"
fails "Kernel#Integer parses the value as a binary number if there's a leading 0B and the base is 2"
fails "Kernel#Integer is a positive binary number if there's a leading +0B and a base of 2"
fails "Kernel#Integer is a negative binary number if there's a leading -0B and a base of 2"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as binary and the base is 2"
fails "Kernel#Integer parses the value as an octal number if there's a leading 0o and a base of 8"
fails "Kernel#Integer is a positive octal number if there's a leading +0o and a base of 8"
fails "Kernel#Integer is a negative octal number if there's a leading -0o and a base of 8"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as octal and the base is 8"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0o and the base is 2"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0o and the base is 3"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0o and the base is 4"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0o and the base is 5"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0o and the base is 6"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0o and the base is 7"
fails "Kernel#Integer parses the value as an octal number if there's a leading 0O and a base of 8"
fails "Kernel#Integer is a positive octal number if there's a leading +0O and a base of 8"
fails "Kernel#Integer is a negative octal number if there's a leading -0O and a base of 8"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as octal and the base is 8"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0O and the base is 2"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0O and the base is 3"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0O and the base is 4"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0O and the base is 5"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0O and the base is 6"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0O and the base is 7"
fails "Kernel#Integer parses the value as a decimal number if there's a leading 0D and a base of 10"
fails "Kernel#Integer is a positive decimal number if there's a leading +0D and a base of 10"
fails "Kernel#Integer is a negative decimal number if there's a leading -0D and a base of 10"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as decimal and the base is 10"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0D and the base is 2"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0D and the base is 3"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0D and the base is 4"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0D and the base is 5"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0D and the base is 6"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0D and the base is 7"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0D and the base is 8"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0D and the base is 9"
fails "Kernel#Integer raises an ArgumentError if a base is given for a non-String value"
fails "Kernel#Integer parses the value as a decimal number if there's a leading 0d and a base of 10"
fails "Kernel#Integer is a positive decimal number if there's a leading +0d and a base of 10"
fails "Kernel#Integer is a negative decimal number if there's a leading -0d and a base of 10"
fails "Kernel#Integer raises an ArgumentError if the number cannot be parsed as decimal and the base is 10"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0d and the base is 2"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0d and the base is 3"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0d and the base is 4"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0d and the base is 5"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0d and the base is 6"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0d and the base is 7"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0d and the base is 8"
fails "Kernel#Integer raises an ArgumentError if the number begins with 0d and the base is 9"
fails "Kernel#Integer raises an ArgumentError if a base is given for a non-String value"
fails "Kernel#Integer is a private method"
end
1 change: 1 addition & 0 deletions spec/rubyspecs
Original file line number Diff line number Diff line change
@@ -52,6 +52,7 @@ corelib/core/kernel/comparison_spec
corelib/core/kernel/eql_spec
corelib/core/kernel/equal_spec
corelib/core/kernel/equal_value_spec
corelib/core/kernel/Integer_spec
corelib/core/kernel/tap_spec
corelib/core/kernel/to_s_spec
corelib/core/kernel/warn_spec