Coverage for src / tests / test_capitalise.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.13.2, created at 2026-02-02 10:52 +0100

1import remedapy as R 

2 

3 

4class TestCapitalise: 

5 def test_data_first(self): 

6 # R.capitalise(data); 

7 assert R.capitalise('hello world') == 'Hello world' 

8 

9 def test_data_last(self): 

10 # R.capitalise()(data); 

11 assert R.pipe('hello world', R.capitalise()) == 'Hello world'