13 lines
342 B
Factor
13 lines
342 B
Factor
USING: kernel tools.test units.si inverse math.constants
|
|
math.functions units.imperial ;
|
|
|
|
{ t } [ 1 m 100 cm = ] unit-test
|
|
|
|
{ t } [ 180 arc-deg [ radians ] undo pi 0.0001 ~ ] unit-test
|
|
|
|
{ t } [ 180 arc-min [ arc-deg ] undo 3 0.0001 ~ ] unit-test
|
|
|
|
{ -40 } [ -40 deg-F [ deg-C ] undo ] unit-test
|
|
|
|
{ -40 } [ -40 deg-C [ deg-F ] undo ] unit-test
|