We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc8d523 commit d0044e4Copy full SHA for d0044e4
test/Table_Tests/src/In_Memory/Single_Value_Column_Spec.enso
@@ -11,6 +11,11 @@ add_specs suite_builder =
11
group_builder.specify "should be a Column but also the underlying value" <|
12
c1 = Column.from_vector "c1" [1]
13
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'
19
(c1:Integer).should_equal 1
20
Test.expect_panic Type_Error (c1:Text)
21
0 commit comments