Changeset - a1ed27a82cf3
[Not reviewed]
0 0 2
Joar Wandborg - 10 years ago 2013-12-16 06:38:45
joar@wandborg.se
Addded tests/ folder with example payloads
2 files changed with 81 insertions and 0 deletions:
0 comments (0 inline, 0 general)
tests/post-transactions.json
Show inline comments
 
new file 100644
 
{
 
  "transactions": [
 
    {
 
      "__type__": "Transaction",
 
      "date": "2013-01-01",
 
      "payee": "Kindly T. Donor",
 
      "postings": [
 
        {
 
          "__type__": "Posting",
 
          "account": "Income:Foo:Donation",
 
          "amount": {
 
            "__type__": "Amount",
 
            "amount": "-100",
 
            "symbol": "$"
 
          }
 
        },
 
        {
 
          "__type__": "Posting",
 
          "account": "Assets:Checking",
 
          "amount": {
 
            "__type__": "Amount",
 
            "amount": "100",
 
            "symbol": "$"
 
          }
 
        }
 
      ]
 
    },
 
    {
 
      "__type__": "Transaction",
 
      "date": "2013-03-15",
 
      "payee": "Another J. Donor",
 
      "postings": [
 
        {
 
          "__type__": "Posting",
 
          "account": "Income:Foo:Donation",
 
          "amount": {
 
            "__type__": "Amount",
 
            "amount": "-400",
 
            "symbol": "$"
 
          }
 
        },
 
        {
 
          "__type__": "Posting",
 
          "account": "Assets:Checking",
 
          "amount": {
 
            "__type__": "Amount",
 
            "amount": "400",
 
            "symbol": "$"
 
          }
 
        }
 
      ]
 
    }
 
  ]
 
}
tests/update-transaction.json
Show inline comments
 
new file 100644
 
{
 
  "transaction": {
 
    "__type__": "Transaction",
 
    "date": "2013-01-01",
 
    "payee": "Kindly T. Donor",
 
    "postings": [
 
      {
 
        "__type__": "Posting",
 
        "account": "Income:Foo:Donation",
 
        "amount": {
 
          "__type__": "Amount",
 
          "amount": "-100",
 
          "symbol": "$"
 
        }
 
      },
 
      {
 
        "__type__": "Posting",
 
        "account": "Assets:Checking",
 
        "amount": {
 
          "__type__": "Amount",
 
          "amount": "100",
 
          "symbol": "$"
 
        }
 
      }
 
    ]
 
  }
 
}
0 comments (0 inline, 0 general)