-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also fixed README.md examples that were outdated
- Loading branch information
Showing
2 changed files
with
183 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
package money_test | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
|
||
"github.com/Rhymond/go-money" | ||
) | ||
|
||
func ExampleMoney() { | ||
pound := money.New(100, "GBP") | ||
twoPounds, err := pound.Add(pound) | ||
|
||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
parties, err := twoPounds.Split(3) | ||
|
||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
fmt.Println(parties[0].Display()) | ||
fmt.Println(parties[1].Display()) | ||
fmt.Println(parties[2].Display()) | ||
|
||
// Output: | ||
// £0.67 | ||
// £0.67 | ||
// £0.66 | ||
} | ||
|
||
func ExampleNew() { | ||
pound := money.New(100, "GBP") | ||
|
||
fmt.Println(pound.Display()) | ||
|
||
// Output: | ||
// £1.00 | ||
} | ||
|
||
func ExampleMoney_comparisons() { | ||
pound := money.New(100, "GBP") | ||
twoPounds := money.New(200, "GBP") | ||
twoEuros := money.New(200, "EUR") | ||
|
||
gt, err := pound.GreaterThan(twoPounds) | ||
fmt.Println(gt, err) | ||
|
||
lt, err := pound.LessThan(twoPounds) | ||
fmt.Println(lt, err) | ||
|
||
eq, err := twoPounds.Equals(twoEuros) | ||
fmt.Println(eq, err) | ||
|
||
// Output: | ||
// false <nil> | ||
// true <nil> | ||
// false currencies don't match | ||
} | ||
|
||
func ExampleMoney_IsZero() { | ||
pound := money.New(100, "GBP") | ||
fmt.Println(pound.IsZero()) | ||
|
||
// Output: | ||
// false | ||
} | ||
|
||
func ExampleMoney_IsPositive() { | ||
pound := money.New(100, "GBP") | ||
fmt.Println(pound.IsPositive()) | ||
|
||
// Output: | ||
// true | ||
} | ||
|
||
func ExampleMoney_IsNegative() { | ||
pound := money.New(100, "GBP") | ||
fmt.Println(pound.IsNegative()) | ||
|
||
// Output: | ||
// false | ||
} | ||
|
||
func ExampleMoney_Add() { | ||
pound := money.New(100, "GBP") | ||
twoPounds := money.New(200, "GBP") | ||
|
||
result, err := pound.Add(twoPounds) | ||
fmt.Println(result.Display(), err) | ||
|
||
// Output: | ||
// £3.00 <nil> | ||
} | ||
|
||
func ExampleMoney_Subtract() { | ||
pound := money.New(100, "GBP") | ||
twoPounds := money.New(200, "GBP") | ||
|
||
result, err := pound.Subtract(twoPounds) | ||
fmt.Println(result.Display(), err) | ||
|
||
// Output: | ||
// -£1.00 <nil> | ||
} | ||
|
||
func ExampleMoney_Multiply() { | ||
pound := money.New(100, "GBP") | ||
|
||
result := pound.Multiply(2) | ||
fmt.Println(result.Display()) | ||
|
||
// Output: | ||
// £2.00 | ||
} | ||
|
||
func ExampleMoney_Absolute() { | ||
pound := money.New(-100, "GBP") | ||
|
||
result := pound.Absolute() | ||
fmt.Println(result.Display()) | ||
|
||
// Output: | ||
// £1.00 | ||
} | ||
|
||
func ExampleMoney_Split() { | ||
pound := money.New(100, "GBP") | ||
parties, err := pound.Split(3) | ||
|
||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
fmt.Println(parties[0].Display()) | ||
fmt.Println(parties[1].Display()) | ||
fmt.Println(parties[2].Display()) | ||
|
||
// Output: | ||
// £0.34 | ||
// £0.33 | ||
// £0.33 | ||
} | ||
|
||
func ExampleMoney_Allocate() { | ||
pound := money.New(100, "GBP") | ||
// Allocate is variadic function which can receive ratios as | ||
// slice (int[]{33, 33, 33}...) or separated by a comma integers | ||
parties, err := pound.Allocate(33, 33, 33) | ||
|
||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
fmt.Println(parties[0].Display()) | ||
fmt.Println(parties[1].Display()) | ||
fmt.Println(parties[2].Display()) | ||
|
||
// Output: | ||
// £0.34 | ||
// £0.33 | ||
// £0.33 | ||
} | ||
|
||
func ExampleMoney_Display() { | ||
fmt.Println(money.New(123456789, "EUR").Display()) | ||
|
||
// Output: | ||
// €1,234,567.89 | ||
} | ||
|
||
func ExampleMoney_AsMajorUnits() { | ||
result := money.New(123456789, "EUR").AsMajorUnits() | ||
fmt.Printf("%.2f", result) | ||
|
||
// Output: | ||
// 1234567.89 | ||
} |