░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/gems/canvas_sort/spec/canvas_sort
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: sorting_spec.rb
# frozen_string_literal: true # # Copyright (C) 2014 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. # require "spec_helper" describe CanvasSort do it "is less than any string" do expect(CanvasSort::First).to be < "" expect(CanvasSort::First).to be < "a" end it "is less than any string, commutatively" do expect("").to be > CanvasSort::First expect("a").to be > CanvasSort::First end it "is less than any number" do expect(CanvasSort::First).to be < 0 expect(CanvasSort::First).to be < -1 expect(CanvasSort::First).to be < 1 end it "is less than any number, commutatively" do expect(0).to be > CanvasSort::First expect(-1).to be > CanvasSort::First expect(1).to be > CanvasSort::First end it "is less than any time" do expect(CanvasSort::First).to be < Time.now expect(CanvasSort::First).to be < Time.at(0) expect(CanvasSort::First).to be < Time.at(-1) end it "is less than any time, commutatively" do expect(Time.now).to be > CanvasSort::First expect(Time.at(0)).to be > CanvasSort::First expect(Time.at(-1)).to be > CanvasSort::First end it "sorts with a few strings" do expect([CanvasSort::Last, "a", CanvasSort::First, "b"].sort).to eq [CanvasSort::First, "a", "b", CanvasSort::Last] end it "sorts with a few numbers" do expect([CanvasSort::Last, 1, CanvasSort::First, 2].sort).to eq [CanvasSort::First, 1, 2, CanvasSort::Last] end it "sorts with a few times" do a = Time.at(Time.now.to_i - 5) b = Time.now expect([CanvasSort::Last, a, CanvasSort::First, b].sort).to eq [CanvasSort::First, a, b, CanvasSort::Last] end it "works with Array#min" do expect([1, 2, CanvasSort::First].min).to eq CanvasSort::First end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 sorting_spec.rb
RB
2.3 KB
2023-09-24 03:36
EDIT