-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbracket_push_test.rb
More file actions
executable file
·92 lines (77 loc) · 2.01 KB
/
bracket_push_test.rb
File metadata and controls
executable file
·92 lines (77 loc) · 2.01 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/usr/bin/env ruby
gem 'minitest', '>= 5.0.0'
require 'minitest/autorun'
require_relative 'bracket_push'
# Test data version:
# deb225e Implement canonical dataset for scrabble-score problem (#255)
class BracketsTest < Minitest::Test
def test_paired_square_brackets
# skip
assert Brackets.paired?('[]')
end
def test_empty_string
skip
assert Brackets.paired?('')
end
def test_unpaired_brackets
skip
refute Brackets.paired?('[[')
end
def test_wrong_ordered_brackets
skip
refute Brackets.paired?('}{')
end
def test_paired_with_whitespace
skip
assert Brackets.paired?('{ }')
end
def test_simple_nested_brackets
skip
assert Brackets.paired?('{[]}')
end
def test_several_paired_brackets
skip
assert Brackets.paired?('{}[]')
end
def test_paired_and_nested_brackets
skip
assert Brackets.paired?('([{}({}[])])')
end
def test_unpaired_and_nested_brackets
skip
refute Brackets.paired?('([{])')
end
def test_paired_and_wrong_nested_brackets
skip
refute Brackets.paired?('[({]})')
end
def test_math_expression
skip
assert Brackets.paired?('(((185 + 223.85) * 15) - 543)/2')
end
def test_complex_latex_expression
skip
str = '\left(\begin{array}{cc} \frac{1}{3} & x\\ '\
'\mathrm{e}^{x} &... x^2 \end{array}\right)'
assert Brackets.paired?(str)
end
# Problems in exercism evolve over time, as we find better ways to ask
# questions.
# The version number refers to the version of the problem you solved,
# not your solution.
#
# Define a constant named VERSION inside of the top level BookKeeping
# module.
# In your file, it will look like this:
#
# module BookKeeping
# VERSION = 1 # Where the version number matches the one in the test.
# end
#
# If you are curious, read more about constants on RubyDoc:
# http://ruby-doc.org/docs/ruby-doc-bundle/UsersGuide/rg/constants.html
def test_bookkeeping
skip
assert_equal 2, BookKeeping::VERSION
end
end