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

Commits on May 24, 2015

  1. Copy the full SHA
    2ecf402 View commit details
  2. Filter phantomjs-only failure on "Time#strftime should be able to sho…

    …w the commercial week"
    vais committed May 24, 2015
    Copy the full SHA
    26c34de View commit details
  3. Merge pull request #889 from vais/master

    Update rubyspec to latest, add more failures for Date and Time
    meh committed May 24, 2015
    Copy the full SHA
    90164a4 View commit details
Showing with 22 additions and 1 deletion.
  1. +1 −1 spec/corelib
  2. +5 −0 spec/filters/bugs/date.rb
  3. +16 −0 spec/filters/bugs/time.rb
2 changes: 1 addition & 1 deletion spec/corelib
5 changes: 5 additions & 0 deletions spec/filters/bugs/date.rb
Original file line number Diff line number Diff line change
@@ -12,4 +12,9 @@
fails "Date#strftime should be able to show the commercial week day"
fails "Date#strftime should be able to show the week number with the week starting on sunday and monday"
fails "Date#strftime should be able to show the number of seconds since the unix epoch"

fails "Date#strftime should be able to print the julian day with leading zeroes"
fails "Date#strftime should be able to show the week number with the week starting on Sunday (%U) and Monday (%W)"
fails "Date#strftime should be able to show the timezone with a : separator"
fails "Date#strftime shows the number of milliseconds since epoch"
end
16 changes: 16 additions & 0 deletions spec/filters/bugs/time.rb
Original file line number Diff line number Diff line change
@@ -177,4 +177,20 @@

fails "Time#- returns a time with nanoseconds precision between two time objects"
fails "Time#strftime with %L formats the milliseconds of a second"

fails "Time#strftime should be able to print the commercial year with leading zeroes"
fails "Time#strftime should be able to print the commercial year with only two digits"
fails "Time#strftime should be able to print the julian day with leading zeroes"
fails "Time#strftime should be able to show the week number with the week starting on Sunday (%U) and Monday (%W)"
fails "Time#strftime should be able to show the commercial week day"
fails "Time#strftime should be able to show the timezone of the date with a : separator"
fails "Time#strftime should be able to show the number of seconds since the unix epoch"
fails "Time#strftime should be able to show the timezone if available"
fails "Time#strftime rounds an offset to the nearest second when formatting with %z"
fails "Time#strftime with %N formats the nanoseconds of the second with %N"
fails "Time#strftime with %N formats the milliseconds of the second with %3N"
fails "Time#strftime with %N formats the microseconds of the second with %6N"
fails "Time#strftime with %N formats the nanoseconds of the second with %9N"
fails "Time#strftime with %N formats the picoseconds of the second with %12N"
fails "Time#strftime should be able to show the commercial week"
end