File: hex_spec.rb

package info (click to toggle)
ruby3.3 3.3.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 153,620 kB
  • sloc: ruby: 1,244,308; ansic: 836,474; yacc: 28,074; pascal: 6,748; sh: 3,913; python: 1,719; cpp: 1,158; makefile: 742; asm: 712; javascript: 394; lisp: 97; perl: 62; awk: 36; sed: 23; xml: 4
file content (49 lines) | stat: -rw-r--r-- 1,259 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

# TODO: Move actual results to String#to_int() and spec in terms of it
describe "String#hex" do
  it "treats leading characters of self as a string of hex digits" do
    "0a".hex.should == 10
    "0o".hex.should == 0
    "0x".hex.should == 0
    "A_BAD_BABE".hex.should == 0xABADBABE
    "0b1010".hex.should == "b1010".hex
    "0d500".hex.should == "d500".hex
    "abcdefG".hex.should == 0xabcdef
  end

  it "does not accept a sequence of underscores as part of a number" do
    "a__b".hex.should == 0xa
    "a____b".hex.should == 0xa
    "a___f".hex.should == 0xa
  end

  it "takes an optional sign" do
    "-1234".hex.should == -4660
    "+1234".hex.should == 4660
  end

  it "takes an optional 0x" do
    "0x0a".hex.should == 10
    "0a".hex.should == 10
  end

  it "requires that the sign is in front of the 0x if present" do
    "-0x1".hex.should == -1
    "0x-1".hex.should == 0
  end

  it "returns 0 on error" do
    "".hex.should == 0
    "+-5".hex.should == 0
    "wombat".hex.should == 0
    "0x0x42".hex.should == 0
  end

  it "returns 0 if sequence begins with underscore" do
    "_a".hex.should == 0
    "___b".hex.should == 0
    "___0xc".hex.should == 0
  end
end