Skip to content

Commit d0044e4

Browse files
committed
debug
1 parent cc8d523 commit d0044e4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/Table_Tests/src/In_Memory/Single_Value_Column_Spec.enso

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ add_specs suite_builder =
1111
group_builder.specify "should be a Column but also the underlying value" <|
1212
c1 = Column.from_vector "c1" [1]
1313
c1.should_be_a Column
14+
IO.println '\n\n'+c1.to_text+"?"
15+
case c1 of
16+
i : Integer -> IO.println "as int: "+i.to_text
17+
_ -> IO.println "not an int"
18+
IO.println '\n'
1419
(c1:Integer).should_equal 1
1520
Test.expect_panic Type_Error (c1:Text)
1621

0 commit comments

Comments
 (0)