googleDocsExcel_test.go 361 B

123456789101112131415
  1. package xlsx
  2. import . "gopkg.in/check.v1"
  3. type GoogleDocsExcelSuite struct{}
  4. var _ = Suite(&GoogleDocsExcelSuite{})
  5. // Test that we can successfully read an XLSX file generated by
  6. // Google Docs.
  7. func (g *GoogleDocsExcelSuite) TestGoogleDocsExcel(c *C) {
  8. xlsxFile, err := OpenFile("googleDocsTest.xlsx")
  9. c.Assert(err, IsNil)
  10. c.Assert(xlsxFile, NotNil)
  11. }