summaryrefslogtreecommitdiff
path: root/test/soap/calc/calc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/soap/calc/calc.rb')
-rw-r--r--test/soap/calc/calc.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/soap/calc/calc.rb b/test/soap/calc/calc.rb
deleted file mode 100644
index 6bc78803b3..0000000000
--- a/test/soap/calc/calc.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-module CalcService
- def self.add(lhs, rhs)
- lhs + rhs
- end
-
- def self.sub(lhs, rhs)
- lhs - rhs
- end
-
- def self.multi(lhs, rhs)
- lhs * rhs
- end
-
- def self.div(lhs, rhs)
- lhs / rhs
- end
-end