summaryrefslogtreecommitdiffhomepage
path: root/test
AgeCommit message (Collapse)Author
2018-02-08chore(coverage) increase coverage and cleanuprandym
2018-02-07Merge branch 'master' into release-3.0.0randym
2018-02-07Merge pull request #565 from ezcater/safe_frozen_sanitizeRandy Morgan (@morgan_randy)
Axlsx.sanitize() uses delete() vs. delete!() for frozen strings
2018-02-06Adds Axlsx.sanitize() unit testsWinfield Peterson
Verify frozen/unfrozen paths for sanitize() helper.
2018-02-06Merge branch 'master' into release-3.0.0randym
2018-02-06Merge pull request #563 from MedText/masterRandy Morgan (@morgan_randy)
Add support for Area Charts and 2D Bar Charts
2018-02-06Merge branch 'master' into release-3.0.0randym
2017-11-17Add support for non-3D bar chartsDavid N. Robinson
2017-11-07Add support for area chartsDavid N. Robinson
2017-05-10Add spec coverage for correct MIME detectionChi-Fung Fan
2017-04-01chore(test): update tests for depreciated methodsrandym
2017-02-21chore(travis): include 2.4 in testsrandym
2016-11-15Merge pull request #499 from ehallmark/pivot_table_bugsRandy Morgan (@morgan_randy)
Pivot table bugs
2016-11-15Merge pull request #494 from sato-s/sheet-titleRandy Morgan (@morgan_randy)
Fix #472: worksheet name with underscore
2016-11-15Merge pull request #492 from sato-s/colorRandy Morgan (@morgan_randy)
set color with Row#color=
2016-11-14set color with Row#color=sato-s
2016-11-14Test case to check sheet name is intact after serialized to xmlsato-s
2016-11-12fix warning: constant ::Fixnum is deprecatedtakkanm
fix Fixnum deprecated warning on Ruby2.4-preview3. Fixnum was unify into Integer. https://bugs.ruby-lang.org/issues/12005
2016-11-07Added style_info field to pivot_table.rbEvan Hallmark
2016-11-07Added pivot table option to pass in list of row fields to omit subtotals fromEvan Hallmark
2016-11-04fix(test): explicitly require members in xpath query assertionrandym
2016-11-04chore(test): remove unused variablesrandym
2016-11-04Merge pull request #455 from acl-services/text-typeRandy Morgan (@morgan_randy)
Implement :text cell type
2016-11-03Add testsArkadiy Butermanov
2016-11-02Allow a Row to be passed to merge_cellsMike Dillon
2016-02-01Add test case for worksheet rendering as requestedBruce Davidson
2016-01-13Fix #440 - allow control of position of outline summary row/columnsBruce Davidson
2015-11-18remove some code reekRunar Ingebrigtsen
2015-09-22Escape special characters in chart `StrVal`Clark Cutler
So that, for example, pie charts can render with labels that include an ampersand
2015-07-05Fix Axlsx::LineSeries#marker_symbol and add testsJonathan Tron
2015-07-04Add test to confirm control characters are removed from shared stringsThomas Cannon
* Commit f8ef8eb78eb4556676b5770c82493e6e6edf7ec8 fixed the shared strings class to automatically sanitize its serialized XML output to remove any control characters. However, this commit did not include tests that the shared strings actually removed the control characters when serializing to an XML string. * This tests confirms that the string with control characters is added to the shared strings, and that the control characters are removed from the string in question when serialized to XML.
2015-07-04Merge branch 'fix-time-cast' of https://github.com/soutaro/axlsx into ↵Jonathan Tron
soutaro-fix-time-cast
2015-07-04Add test, fix example with tab color generation and fix a but due to a typoJonathan Tron
2015-07-03Remove lowercase extension testmarc
It is no longer needed because now detection is though mime type
2015-07-03Extract mime type detection to an utility classmarc
2015-07-03Validates whether an image is acceptable through mime typemarc
image/jpeg, image/png & image/gif are considered the allowed mime types for an image. mimemagic gem is added as dependency in order to do the checking. Added tests to check against three supported mime types. A fake jpg fixture (created with 'touch' command) has been added to test that extension is no longer used.
2015-03-14Merge pull request #347 from ionthegeek/smoothingJurriaan Pruis
Add support for enabling or disabling smoothed lines in a scatter series
2015-02-11Fix content types for uppercased image file extensionsEdgars Beigarts
2015-01-12Fix #fit_to to work correctly and fix tests under Ruby 2.2.0Jurriaan Pruis
9999 is too big
2014-10-29Skip to_time if the value is a Time instanceSoutaro Matsumoto
This skips calling `#to_time` if the value is a instance of subclass of `Time`, like `ActiveSupport::TimeWithZone`.
2014-08-15Fix syntax error in scatter series testsIan Anderson
2014-08-12Add support for enabling or disabling smoothed lines in a scatter chart seriesIan Anderson
2014-08-01Add example and test for auto filters on multiple worksheet (refs #338)Jonathan Tron
2014-04-04Fix boolean values so the output matches Excel and works on NumbersJurriaan Pruis
Use 1 or 0 instead of 'true' or 'false' in the XML output
2014-03-12Fix autowidth in combination with sanitizingJurriaan Pruis
By only sanitizing just before serialisation.
2014-03-04Fix cell merging, #179Jurriaan Pruis
2014-03-04Add tests for checking formatting and sourceLinked properties when setting ↵Chris Roby
formatting on an axis
2014-03-04Array forumla tests.tafryn
2014-03-01Implemented RichText (multiple text runs)Jurriaan Pruis
and added multiline autowidth for both RichText and normal strings
2014-02-26Huge refactoringJurriaan Pruis
Do not create huge strings Let Row inherit from SimpleTypedList Optimized sanitizing Optimized validation And more..