nudge 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/spec/instructions/bool/bool_duplicate_spec.rb +50 -0
- data/spec/instructions/bool/bool_from_float_spec.rb +41 -0
- data/spec/instructions/bool/bool_from_int_spec.rb +41 -0
- data/spec/instructions/bool/bool_pop_spec.rb +47 -0
- data/spec/instructions/bool/bool_rotate_spec.rb +60 -0
- data/spec/instructions/bool/bool_swap_spec.rb +64 -0
- data/spec/instructions/code/code_depth_spec.rb +39 -0
- data/spec/instructions/code/code_duplicate_spec.rb +50 -0
- data/spec/instructions/code/code_flush_spec.rb +37 -0
- data/spec/instructions/code/code_from_bool_spec.rb +37 -0
- data/spec/instructions/code/code_from_float_spec.rb +37 -0
- data/spec/instructions/code/code_from_int_spec.rb +37 -0
- data/spec/instructions/code/code_pop_spec.rb +47 -0
- data/spec/instructions/code/code_rotate_spec.rb +60 -0
- data/spec/instructions/code/code_swap_spec.rb +58 -0
- data/spec/instructions/float/float_duplicate_spec.rb +50 -0
- data/spec/instructions/float/float_from_bool_spec.rb +42 -0
- data/spec/instructions/float/float_from_int_spec.rb +37 -0
- data/spec/instructions/float/float_pop_spec.rb +47 -0
- data/spec/instructions/float/float_rotate_spec.rb +60 -0
- data/spec/instructions/float/float_swap_spec.rb +64 -0
- data/spec/instructions/int/int_duplicate_spec.rb +50 -0
- data/spec/instructions/int/int_from_bool_spec.rb +43 -0
- data/spec/instructions/int/int_from_float_spec.rb +37 -0
- data/spec/instructions/int/int_pop_spec.rb +47 -0
- data/spec/instructions/int/int_rotate_spec.rb +60 -0
- data/spec/instructions/int/int_swap_spec.rb +64 -0
- data/spec/instructions/name/name_duplicate_spec.rb +50 -0
- data/spec/instructions/name/name_pop_spec.rb +47 -0
- data/spec/instructions/name/name_rotate_spec.rb +60 -0
- data/spec/instructions/name/name_swap_spec.rb +58 -0
- data/spec/interpreter/interpreter_spec.rb +0 -2
- metadata +66 -16
- data/spec/instructions/code/code_stack_spec.rb +0 -386
- data/spec/instructions/split_these/bool_stack_spec.rb +0 -95
- data/spec/instructions/split_these/conversions_spec.rb +0 -103
- data/spec/instructions/split_these/float_stack_spec.rb +0 -92
- data/spec/instructions/split_these/int_stack_spec.rb +0 -81
- data/spec/instructions/split_these/name_stack_spec.rb +0 -84
- /data/spec/instructions/code/{code_fromname_spec.rb → code_from_name_spec.rb} +0 -0
@@ -0,0 +1,50 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
2
|
+
include Nudge
|
3
|
+
|
4
|
+
|
5
|
+
describe NameDuplicateInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = NameDuplicateInstruction.new(@context)
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
describe "\#go" do
|
16
|
+
before(:each) do
|
17
|
+
@i1 = NameDuplicateInstruction.new(@context)
|
18
|
+
@name1 = ReferencePoint.new("my_name")
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "\#preconditions?" do
|
22
|
+
it "should check that there are enough parameters" do
|
23
|
+
2.times {@context.stacks[:name].push(@name1)}
|
24
|
+
@i1.preconditions?.should == true
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should raise an error if the preconditions aren't met" do
|
28
|
+
@context.clear_stacks # there are no params at all
|
29
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should successfully run #go only if all preconditions are met" do
|
33
|
+
3.times {@context.stacks[:name].push(@name1)}
|
34
|
+
@i1.should_receive(:cleanup)
|
35
|
+
@i1.go
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
|
40
|
+
describe "\#cleanup" do
|
41
|
+
it "should swap the top two values" do
|
42
|
+
@context.stacks[:name].push(@name1)
|
43
|
+
@i1.go
|
44
|
+
@context.depth(:name).should == 2
|
45
|
+
@context.pop_value(:name).should == "my_name"
|
46
|
+
@context.pop_value(:name).should == "my_name"
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
2
|
+
include Nudge
|
3
|
+
|
4
|
+
describe NamePopInstruction do
|
5
|
+
|
6
|
+
it_should_behave_like "every Nudge Instruction"
|
7
|
+
|
8
|
+
before(:each) do
|
9
|
+
@context = Interpreter.new
|
10
|
+
@i1 = NamePopInstruction.new(@context)
|
11
|
+
end
|
12
|
+
|
13
|
+
|
14
|
+
describe "\#go" do
|
15
|
+
before(:each) do
|
16
|
+
@i1 = NamePopInstruction.new(@context)
|
17
|
+
@name1 = ReferencePoint.new("foo")
|
18
|
+
end
|
19
|
+
|
20
|
+
describe "\#preconditions?" do
|
21
|
+
it "should check that there are enough parameters" do
|
22
|
+
2.times {@context.stacks[:name].push(@name1)}
|
23
|
+
@i1.preconditions?.should == true
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should raise an error if the preconditions aren't met" do
|
27
|
+
@context.clear_stacks # there are no params at all
|
28
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should successfully run #go only if all preconditions are met" do
|
32
|
+
3.times {@context.stacks[:name].push(@name1)}
|
33
|
+
@i1.should_receive(:cleanup)
|
34
|
+
@i1.go
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe "\#derive" do
|
39
|
+
it "should pop one item" do
|
40
|
+
2.times {@context.stacks[:name].push(@name1)}
|
41
|
+
@i1.go
|
42
|
+
@context.stacks[:name].depth.should == 1
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
2
|
+
include Nudge
|
3
|
+
|
4
|
+
|
5
|
+
describe NameRotateInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = NameRotateInstruction.new(@context)
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
describe "\#go" do
|
16
|
+
before(:each) do
|
17
|
+
@i1 = NameRotateInstruction.new(@context)
|
18
|
+
@name1 = ReferencePoint.new("name_1")
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "\#preconditions?" do
|
22
|
+
it "should check that there are enough parameters" do
|
23
|
+
3.times {@context.stacks[:name].push(@name1)}
|
24
|
+
@i1.preconditions?.should == true
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should raise an error if the preconditions aren't met" do
|
28
|
+
@context.clear_stacks # there are no params at all
|
29
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should successfully run #go only if all preconditions are met" do
|
33
|
+
3.times {@context.stacks[:name].push(@name1)}
|
34
|
+
@i1.should_receive(:cleanup)
|
35
|
+
@i1.go
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
describe "\#derive" do
|
40
|
+
it "should pop all the arguments" do
|
41
|
+
3.times {@context.stacks[:name].push(@name1)}
|
42
|
+
@i1.stub!(:cleanup) # and do nothing
|
43
|
+
@i1.go
|
44
|
+
@context.stacks[:name].depth.should == 0
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe "\#cleanup" do
|
49
|
+
it "should move around the top three values" do
|
50
|
+
@context.stacks[:name].push(ReferencePoint.new("name_3"))
|
51
|
+
@context.stacks[:name].push(ReferencePoint.new("name_2"))
|
52
|
+
@context.stacks[:name].push(ReferencePoint.new("name_1"))
|
53
|
+
@i1.go
|
54
|
+
@context.pop_value(:name).should == "name_3"
|
55
|
+
@context.pop_value(:name).should == "name_1"
|
56
|
+
@context.pop_value(:name).should == "name_2"
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), "../../spec_helper")
|
2
|
+
include Nudge
|
3
|
+
|
4
|
+
|
5
|
+
describe NameSwapInstruction do
|
6
|
+
|
7
|
+
it_should_behave_like "every Nudge Instruction"
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@context = Interpreter.new
|
11
|
+
@i1 = NameSwapInstruction.new(@context)
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
describe "\#go" do
|
16
|
+
before(:each) do
|
17
|
+
@i1 = NameSwapInstruction.new(@context)
|
18
|
+
@name1 = ReferencePoint.new("name1")
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "\#preconditions?" do
|
22
|
+
it "should check that there are enough parameters" do
|
23
|
+
2.times {@context.stacks[:name].push(@name1)}
|
24
|
+
@i1.preconditions?.should == true
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should raise an error if the preconditions aren't met" do
|
28
|
+
@context.clear_stacks # there are no params at all
|
29
|
+
lambda{@i1.preconditions?}.should raise_error(Instruction::NotEnoughStackItems)
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should successfully run #go only if all preconditions are met" do
|
33
|
+
3.times {@context.stacks[:name].push(@name1)}
|
34
|
+
@i1.should_receive(:cleanup)
|
35
|
+
@i1.go
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
describe "\#derive" do
|
40
|
+
it "should pop all the arguments" do
|
41
|
+
2.times {@context.stacks[:name].push(@name1)}
|
42
|
+
@i1.stub!(:cleanup) # and do nothing
|
43
|
+
@i1.go
|
44
|
+
@context.stacks[:name].depth.should == 0
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe "\#cleanup" do
|
49
|
+
it "should swap the top two values" do
|
50
|
+
@context.stacks[:name].push ReferencePoint.new("x")
|
51
|
+
@context.stacks[:name].push ReferencePoint.new("y")
|
52
|
+
@i1.go
|
53
|
+
@context.pop_value(:name).should == "x"
|
54
|
+
@context.pop_value(:name).should == "y"
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 0.2.
|
8
|
+
- 2
|
9
|
+
version: 0.2.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Bill Tozier
|
@@ -236,12 +236,18 @@ files:
|
|
236
236
|
- spec/instructions/bool/bool_and_spec.rb
|
237
237
|
- spec/instructions/bool/bool_define_spec.rb
|
238
238
|
- spec/instructions/bool/bool_depth_spec.rb
|
239
|
+
- spec/instructions/bool/bool_duplicate_spec.rb
|
239
240
|
- spec/instructions/bool/bool_equal_q_spec.rb
|
240
241
|
- spec/instructions/bool/bool_flush_spec.rb
|
242
|
+
- spec/instructions/bool/bool_from_float_spec.rb
|
243
|
+
- spec/instructions/bool/bool_from_int_spec.rb
|
241
244
|
- spec/instructions/bool/bool_not_spec.rb
|
242
245
|
- spec/instructions/bool/bool_or_spec.rb
|
246
|
+
- spec/instructions/bool/bool_pop_spec.rb
|
243
247
|
- spec/instructions/bool/bool_random_spec.rb
|
248
|
+
- spec/instructions/bool/bool_rotate_spec.rb
|
244
249
|
- spec/instructions/bool/bool_shove_spec.rb
|
250
|
+
- spec/instructions/bool/bool_swap_spec.rb
|
245
251
|
- spec/instructions/bool/bool_xor_spec.rb
|
246
252
|
- spec/instructions/bool/bool_yank_spec.rb
|
247
253
|
- spec/instructions/bool/bool_yankdup_spec.rb
|
@@ -254,14 +260,20 @@ files:
|
|
254
260
|
- spec/instructions/code/code_container_spec.rb
|
255
261
|
- spec/instructions/code/code_contains_q_spec.rb
|
256
262
|
- spec/instructions/code/code_define_spec.rb
|
263
|
+
- spec/instructions/code/code_depth_spec.rb
|
257
264
|
- spec/instructions/code/code_discrepancy_spec.rb
|
258
265
|
- spec/instructions/code/code_do_count_spec.rb
|
259
266
|
- spec/instructions/code/code_do_range_spec.rb
|
260
267
|
- spec/instructions/code/code_do_times_spec.rb
|
268
|
+
- spec/instructions/code/code_duplicate_spec.rb
|
261
269
|
- spec/instructions/code/code_equal_q_spec.rb
|
262
270
|
- spec/instructions/code/code_execute_spec.rb
|
263
271
|
- spec/instructions/code/code_execute_then_pop_spec.rb
|
264
|
-
- spec/instructions/code/
|
272
|
+
- spec/instructions/code/code_flush_spec.rb
|
273
|
+
- spec/instructions/code/code_from_bool_spec.rb
|
274
|
+
- spec/instructions/code/code_from_float_spec.rb
|
275
|
+
- spec/instructions/code/code_from_int_spec.rb
|
276
|
+
- spec/instructions/code/code_from_name_spec.rb
|
265
277
|
- spec/instructions/code/code_gsub_spec.rb
|
266
278
|
- spec/instructions/code/code_if_spec.rb
|
267
279
|
- spec/instructions/code/code_instructions_spec.rb
|
@@ -275,10 +287,12 @@ files:
|
|
275
287
|
- spec/instructions/code/code_null_q_spec.rb
|
276
288
|
- spec/instructions/code/code_parses_q_spec.rb
|
277
289
|
- spec/instructions/code/code_points_spec.rb
|
290
|
+
- spec/instructions/code/code_pop_spec.rb
|
278
291
|
- spec/instructions/code/code_position_spec.rb
|
279
292
|
- spec/instructions/code/code_quote_spec.rb
|
280
293
|
- spec/instructions/code/code_replace_nth_point_spec.rb
|
281
|
-
- spec/instructions/code/
|
294
|
+
- spec/instructions/code/code_rotate_spec.rb
|
295
|
+
- spec/instructions/code/code_swap_spec.rb
|
282
296
|
- spec/instructions/exec/exec_define_spec.rb
|
283
297
|
- spec/instructions/exec/exec_depth_spec.rb
|
284
298
|
- spec/instructions/exec/exec_do_count_spec.rb
|
@@ -303,8 +317,11 @@ files:
|
|
303
317
|
- spec/instructions/float/float_define_spec.rb
|
304
318
|
- spec/instructions/float/float_depth_spec.rb
|
305
319
|
- spec/instructions/float/float_divide_spec.rb
|
320
|
+
- spec/instructions/float/float_duplicate_spec.rb
|
306
321
|
- spec/instructions/float/float_equal_q_spec.rb
|
307
322
|
- spec/instructions/float/float_flush_spec.rb
|
323
|
+
- spec/instructions/float/float_from_bool_spec.rb
|
324
|
+
- spec/instructions/float/float_from_int_spec.rb
|
308
325
|
- spec/instructions/float/float_greater_than_q_spec.rb
|
309
326
|
- spec/instructions/float/float_if_spec.rb
|
310
327
|
- spec/instructions/float/float_less_than_q_spec.rb
|
@@ -313,12 +330,15 @@ files:
|
|
313
330
|
- spec/instructions/float/float_modulo_spec.rb
|
314
331
|
- spec/instructions/float/float_multiply_spec.rb
|
315
332
|
- spec/instructions/float/float_negative_spec.rb
|
333
|
+
- spec/instructions/float/float_pop_spec.rb
|
316
334
|
- spec/instructions/float/float_power_spec.rb
|
317
335
|
- spec/instructions/float/float_random_spec.rb
|
336
|
+
- spec/instructions/float/float_rotate_spec.rb
|
318
337
|
- spec/instructions/float/float_shove_spec.rb
|
319
338
|
- spec/instructions/float/float_sine_spec.rb
|
320
339
|
- spec/instructions/float/float_sqrt_spec.rb
|
321
340
|
- spec/instructions/float/float_subtract_spec.rb
|
341
|
+
- spec/instructions/float/float_swap_spec.rb
|
322
342
|
- spec/instructions/float/float_tangent_spec.rb
|
323
343
|
- spec/instructions/float/float_yank_spec.rb
|
324
344
|
- spec/instructions/float/float_yankdup_spec.rb
|
@@ -328,8 +348,11 @@ files:
|
|
328
348
|
- spec/instructions/int/int_define_spec.rb
|
329
349
|
- spec/instructions/int/int_depth_spec.rb
|
330
350
|
- spec/instructions/int/int_divide_spec.rb
|
351
|
+
- spec/instructions/int/int_duplicate_spec.rb
|
331
352
|
- spec/instructions/int/int_equal_q_spec.rb
|
332
353
|
- spec/instructions/int/int_flush_spec.rb
|
354
|
+
- spec/instructions/int/int_from_bool_spec.rb
|
355
|
+
- spec/instructions/int/int_from_float_spec.rb
|
333
356
|
- spec/instructions/int/int_greater_than_q_spec.rb
|
334
357
|
- spec/instructions/int/int_if_spec.rb
|
335
358
|
- spec/instructions/int/int_less_than_q_spec.rb
|
@@ -338,27 +361,29 @@ files:
|
|
338
361
|
- spec/instructions/int/int_modulo_spec.rb
|
339
362
|
- spec/instructions/int/int_multiply_spec.rb
|
340
363
|
- spec/instructions/int/int_negative_spec.rb
|
364
|
+
- spec/instructions/int/int_pop_spec.rb
|
341
365
|
- spec/instructions/int/int_power_spec.rb
|
342
366
|
- spec/instructions/int/int_random_spec.rb
|
367
|
+
- spec/instructions/int/int_rotate_spec.rb
|
343
368
|
- spec/instructions/int/int_shove_spec.rb
|
344
369
|
- spec/instructions/int/int_subtract_spec.rb
|
370
|
+
- spec/instructions/int/int_swap_spec.rb
|
345
371
|
- spec/instructions/int/int_yank_spec.rb
|
346
372
|
- spec/instructions/int/int_yankdup_spec.rb
|
347
373
|
- spec/instructions/name/name_depth_spec.rb
|
348
374
|
- spec/instructions/name/name_disable_lookup_spec.rb
|
375
|
+
- spec/instructions/name/name_duplicate_spec.rb
|
349
376
|
- spec/instructions/name/name_equal_q_spec.rb
|
350
377
|
- spec/instructions/name/name_flush_spec.rb
|
351
378
|
- spec/instructions/name/name_next_spec.rb
|
379
|
+
- spec/instructions/name/name_pop_spec.rb
|
352
380
|
- spec/instructions/name/name_random_bound_spec.rb
|
381
|
+
- spec/instructions/name/name_rotate_spec.rb
|
353
382
|
- spec/instructions/name/name_shove_spec.rb
|
383
|
+
- spec/instructions/name/name_swap_spec.rb
|
354
384
|
- spec/instructions/name/name_unbind_spec.rb
|
355
385
|
- spec/instructions/name/name_yank_spec.rb
|
356
386
|
- spec/instructions/name/name_yankdup_spec.rb
|
357
|
-
- spec/instructions/split_these/bool_stack_spec.rb
|
358
|
-
- spec/instructions/split_these/conversions_spec.rb
|
359
|
-
- spec/instructions/split_these/float_stack_spec.rb
|
360
|
-
- spec/instructions/split_these/int_stack_spec.rb
|
361
|
-
- spec/instructions/split_these/name_stack_spec.rb
|
362
387
|
- spec/interpreter/codeblock_point_spec.rb
|
363
388
|
- spec/interpreter/codetype_spec.rb
|
364
389
|
- spec/interpreter/instruction_spec.rb
|
@@ -424,12 +449,18 @@ test_files:
|
|
424
449
|
- spec/instructions/bool/bool_and_spec.rb
|
425
450
|
- spec/instructions/bool/bool_define_spec.rb
|
426
451
|
- spec/instructions/bool/bool_depth_spec.rb
|
452
|
+
- spec/instructions/bool/bool_duplicate_spec.rb
|
427
453
|
- spec/instructions/bool/bool_equal_q_spec.rb
|
428
454
|
- spec/instructions/bool/bool_flush_spec.rb
|
455
|
+
- spec/instructions/bool/bool_from_float_spec.rb
|
456
|
+
- spec/instructions/bool/bool_from_int_spec.rb
|
429
457
|
- spec/instructions/bool/bool_not_spec.rb
|
430
458
|
- spec/instructions/bool/bool_or_spec.rb
|
459
|
+
- spec/instructions/bool/bool_pop_spec.rb
|
431
460
|
- spec/instructions/bool/bool_random_spec.rb
|
461
|
+
- spec/instructions/bool/bool_rotate_spec.rb
|
432
462
|
- spec/instructions/bool/bool_shove_spec.rb
|
463
|
+
- spec/instructions/bool/bool_swap_spec.rb
|
433
464
|
- spec/instructions/bool/bool_xor_spec.rb
|
434
465
|
- spec/instructions/bool/bool_yank_spec.rb
|
435
466
|
- spec/instructions/bool/bool_yankdup_spec.rb
|
@@ -442,14 +473,20 @@ test_files:
|
|
442
473
|
- spec/instructions/code/code_container_spec.rb
|
443
474
|
- spec/instructions/code/code_contains_q_spec.rb
|
444
475
|
- spec/instructions/code/code_define_spec.rb
|
476
|
+
- spec/instructions/code/code_depth_spec.rb
|
445
477
|
- spec/instructions/code/code_discrepancy_spec.rb
|
446
478
|
- spec/instructions/code/code_do_count_spec.rb
|
447
479
|
- spec/instructions/code/code_do_range_spec.rb
|
448
480
|
- spec/instructions/code/code_do_times_spec.rb
|
481
|
+
- spec/instructions/code/code_duplicate_spec.rb
|
449
482
|
- spec/instructions/code/code_equal_q_spec.rb
|
450
483
|
- spec/instructions/code/code_execute_spec.rb
|
451
484
|
- spec/instructions/code/code_execute_then_pop_spec.rb
|
452
|
-
- spec/instructions/code/
|
485
|
+
- spec/instructions/code/code_flush_spec.rb
|
486
|
+
- spec/instructions/code/code_from_bool_spec.rb
|
487
|
+
- spec/instructions/code/code_from_float_spec.rb
|
488
|
+
- spec/instructions/code/code_from_int_spec.rb
|
489
|
+
- spec/instructions/code/code_from_name_spec.rb
|
453
490
|
- spec/instructions/code/code_gsub_spec.rb
|
454
491
|
- spec/instructions/code/code_if_spec.rb
|
455
492
|
- spec/instructions/code/code_instructions_spec.rb
|
@@ -463,10 +500,12 @@ test_files:
|
|
463
500
|
- spec/instructions/code/code_null_q_spec.rb
|
464
501
|
- spec/instructions/code/code_parses_q_spec.rb
|
465
502
|
- spec/instructions/code/code_points_spec.rb
|
503
|
+
- spec/instructions/code/code_pop_spec.rb
|
466
504
|
- spec/instructions/code/code_position_spec.rb
|
467
505
|
- spec/instructions/code/code_quote_spec.rb
|
468
506
|
- spec/instructions/code/code_replace_nth_point_spec.rb
|
469
|
-
- spec/instructions/code/
|
507
|
+
- spec/instructions/code/code_rotate_spec.rb
|
508
|
+
- spec/instructions/code/code_swap_spec.rb
|
470
509
|
- spec/instructions/exec/exec_define_spec.rb
|
471
510
|
- spec/instructions/exec/exec_depth_spec.rb
|
472
511
|
- spec/instructions/exec/exec_do_count_spec.rb
|
@@ -491,8 +530,11 @@ test_files:
|
|
491
530
|
- spec/instructions/float/float_define_spec.rb
|
492
531
|
- spec/instructions/float/float_depth_spec.rb
|
493
532
|
- spec/instructions/float/float_divide_spec.rb
|
533
|
+
- spec/instructions/float/float_duplicate_spec.rb
|
494
534
|
- spec/instructions/float/float_equal_q_spec.rb
|
495
535
|
- spec/instructions/float/float_flush_spec.rb
|
536
|
+
- spec/instructions/float/float_from_bool_spec.rb
|
537
|
+
- spec/instructions/float/float_from_int_spec.rb
|
496
538
|
- spec/instructions/float/float_greater_than_q_spec.rb
|
497
539
|
- spec/instructions/float/float_if_spec.rb
|
498
540
|
- spec/instructions/float/float_less_than_q_spec.rb
|
@@ -501,12 +543,15 @@ test_files:
|
|
501
543
|
- spec/instructions/float/float_modulo_spec.rb
|
502
544
|
- spec/instructions/float/float_multiply_spec.rb
|
503
545
|
- spec/instructions/float/float_negative_spec.rb
|
546
|
+
- spec/instructions/float/float_pop_spec.rb
|
504
547
|
- spec/instructions/float/float_power_spec.rb
|
505
548
|
- spec/instructions/float/float_random_spec.rb
|
549
|
+
- spec/instructions/float/float_rotate_spec.rb
|
506
550
|
- spec/instructions/float/float_shove_spec.rb
|
507
551
|
- spec/instructions/float/float_sine_spec.rb
|
508
552
|
- spec/instructions/float/float_sqrt_spec.rb
|
509
553
|
- spec/instructions/float/float_subtract_spec.rb
|
554
|
+
- spec/instructions/float/float_swap_spec.rb
|
510
555
|
- spec/instructions/float/float_tangent_spec.rb
|
511
556
|
- spec/instructions/float/float_yank_spec.rb
|
512
557
|
- spec/instructions/float/float_yankdup_spec.rb
|
@@ -516,8 +561,11 @@ test_files:
|
|
516
561
|
- spec/instructions/int/int_define_spec.rb
|
517
562
|
- spec/instructions/int/int_depth_spec.rb
|
518
563
|
- spec/instructions/int/int_divide_spec.rb
|
564
|
+
- spec/instructions/int/int_duplicate_spec.rb
|
519
565
|
- spec/instructions/int/int_equal_q_spec.rb
|
520
566
|
- spec/instructions/int/int_flush_spec.rb
|
567
|
+
- spec/instructions/int/int_from_bool_spec.rb
|
568
|
+
- spec/instructions/int/int_from_float_spec.rb
|
521
569
|
- spec/instructions/int/int_greater_than_q_spec.rb
|
522
570
|
- spec/instructions/int/int_if_spec.rb
|
523
571
|
- spec/instructions/int/int_less_than_q_spec.rb
|
@@ -526,27 +574,29 @@ test_files:
|
|
526
574
|
- spec/instructions/int/int_modulo_spec.rb
|
527
575
|
- spec/instructions/int/int_multiply_spec.rb
|
528
576
|
- spec/instructions/int/int_negative_spec.rb
|
577
|
+
- spec/instructions/int/int_pop_spec.rb
|
529
578
|
- spec/instructions/int/int_power_spec.rb
|
530
579
|
- spec/instructions/int/int_random_spec.rb
|
580
|
+
- spec/instructions/int/int_rotate_spec.rb
|
531
581
|
- spec/instructions/int/int_shove_spec.rb
|
532
582
|
- spec/instructions/int/int_subtract_spec.rb
|
583
|
+
- spec/instructions/int/int_swap_spec.rb
|
533
584
|
- spec/instructions/int/int_yank_spec.rb
|
534
585
|
- spec/instructions/int/int_yankdup_spec.rb
|
535
586
|
- spec/instructions/name/name_depth_spec.rb
|
536
587
|
- spec/instructions/name/name_disable_lookup_spec.rb
|
588
|
+
- spec/instructions/name/name_duplicate_spec.rb
|
537
589
|
- spec/instructions/name/name_equal_q_spec.rb
|
538
590
|
- spec/instructions/name/name_flush_spec.rb
|
539
591
|
- spec/instructions/name/name_next_spec.rb
|
592
|
+
- spec/instructions/name/name_pop_spec.rb
|
540
593
|
- spec/instructions/name/name_random_bound_spec.rb
|
594
|
+
- spec/instructions/name/name_rotate_spec.rb
|
541
595
|
- spec/instructions/name/name_shove_spec.rb
|
596
|
+
- spec/instructions/name/name_swap_spec.rb
|
542
597
|
- spec/instructions/name/name_unbind_spec.rb
|
543
598
|
- spec/instructions/name/name_yank_spec.rb
|
544
599
|
- spec/instructions/name/name_yankdup_spec.rb
|
545
|
-
- spec/instructions/split_these/bool_stack_spec.rb
|
546
|
-
- spec/instructions/split_these/conversions_spec.rb
|
547
|
-
- spec/instructions/split_these/float_stack_spec.rb
|
548
|
-
- spec/instructions/split_these/int_stack_spec.rb
|
549
|
-
- spec/instructions/split_these/name_stack_spec.rb
|
550
600
|
- spec/interpreter/codeblock_point_spec.rb
|
551
601
|
- spec/interpreter/codetype_spec.rb
|
552
602
|
- spec/interpreter/instruction_spec.rb
|