Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
9c78fc84
Commit
9c78fc84
authored
Aug 05, 2014
by
kkkkkt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added Math.cos and Math.tan test case
parent
a18c5756
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
mrbgems/mruby-math/test/math.rb
mrbgems/mruby-math/test/math.rb
+16
-0
No files found.
mrbgems/mruby-math/test/math.rb
View file @
9c78fc84
...
@@ -23,6 +23,22 @@ assert('Math.sin PI/2') do
...
@@ -23,6 +23,22 @@ assert('Math.sin PI/2') do
check_float
(
Math
.
sin
(
Math
::
PI
/
2
),
1
)
check_float
(
Math
.
sin
(
Math
::
PI
/
2
),
1
)
end
end
assert
(
'Math.cos 0'
)
do
check_float
(
Math
.
cos
(
0
),
1
)
end
assert
(
'Math.cos PI/2'
)
do
check_float
(
Math
.
cos
(
Math
::
PI
/
2
),
0
)
end
assert
(
'Math.tan 0'
)
do
check_float
(
Math
.
tan
(
0
),
0
)
end
assert
(
'Math.tan PI/4'
)
do
check_float
(
Math
.
tan
(
Math
::
PI
/
4
),
1
)
end
assert
(
'Fundamental trig identities'
)
do
assert
(
'Fundamental trig identities'
)
do
result
=
true
result
=
true
N
=
13
N
=
13
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment