File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed
Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 11name = " ApproxFunBase"
22uuid = " fbd15aa5-315a-5a7d-a8a4-24992e37be05"
3- version = " 0.6.0 "
3+ version = " 0.6.1 "
44
55[deps ]
66AbstractFFTs = " 621f4979-c628-5d54-868e-fcf4e3e8185c"
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ struct PrintShow
3838end
3939Base. show (io:: IO ,N:: PrintShow ) = print (io,N. str)
4040
41- show (io:: IO , B:: Operator ) = summary (io, B)
41+ show (io:: IO , B:: Operator ; kw ... ) = summary (io, B)
4242
4343function show (io:: IO , :: MIME"text/plain" , B:: Operator ;header:: Bool = true )
4444 header && summary (io, B)
120120function show (io:: IO ,s:: QuotientSpace )
121121 show (io,s. space)
122122 print (io," /\n " )
123- show (io,s. bcs;header= false )
123+ show (io,s. bcs)
124+ end
125+
126+ function show (io:: IO , m:: MIME"text/plain" , s:: QuotientSpace )
127+ show (io,s. space)
128+ print (io," /\n " )
129+ show (io, m, s. bcs, header = false )
124130end
125131
126132
Original file line number Diff line number Diff line change 3737 show (io, MIME " text/plain" (), D)
3838 @test contains (String (take! (io)), dsum)
3939 end
40+ @testset " QuotientSpace" begin
41+ Q = QuotientSpace (Dirichlet (ConstantSpace (0 .. 1 )))
42+ @test startswith (repr (Q), " ConstantSpace(0..1) /" )
43+ io = IOBuffer ()
44+ show (io, MIME " text/plain" (), Q)
45+ s = String (take! (io))
46+ @test startswith (s, " ConstantSpace(0..1) /" )
47+ end
4048 end
4149end
You can’t perform that action at this time.
0 commit comments